Your IP : 18.119.213.42


Current Path : /home/e/p/h/ephorei/www/wp-content/plugins/background-image-cropper/
Upload File :
Current File : /home/e/p/h/ephorei/www/wp-content/plugins/background-image-cropper/background-image-cropper.js

(function( wp, $ ){
	'use strict';

	if ( ! wp || ! wp.customize ) { return; }

	// Set up our namespace.
	var api = wp.customize;

	api.croppingBackgroundImageControl = api.CroppedImageControl.extend({
		/**
		 * Updates the setting and re-renders the control UI.
		 *
		 * Save the image to the setting instead of the attachment id.
		 *
		 * @param {object} attachment
		 */
		setImageFromAttachment: function( attachment ) {
			this.params.attachment = attachment;

			// Set the Customizer setting; the callback takes care of rendering.
			this.setting( attachment.sizes.full.url );
		}

	});
	
	/**
	 * Extends wp.customizer.controlConstructor with control constructor for
	 * background_image.
	 */
	$.extend( api.controlConstructor, {
		background: api.croppingBackgroundImageControl // Note: this overrides the WP_Customize_Background_Image_control, which is removed in PHP anyway, because of the way the customizer media CSS works
	});
})( window.wp, jQuery );