| Current Path : /home/ereika83/www/wp-content/plugins/background-image-cropper/ |
| Current File : /home/ereika83/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 );