2012-02-24 23:12:43 -05:00
|
|
|
(function( exports, $ ){
|
|
|
|
var api = wp.customize;
|
|
|
|
|
2012-03-06 17:48:07 -05:00
|
|
|
/*
|
|
|
|
* @param options
|
|
|
|
* - previewer - The Previewer instance to sync with.
|
2012-04-25 12:04:51 -04:00
|
|
|
* - transport - The transport to use for previewing. Supports 'refresh' and 'postMessage'.
|
2012-03-06 17:48:07 -05:00
|
|
|
*/
|
2012-03-28 00:14:09 -04:00
|
|
|
api.Setting = api.Value.extend({
|
2012-03-06 17:48:07 -05:00
|
|
|
initialize: function( id, value, options ) {
|
2012-03-28 00:14:09 -04:00
|
|
|
var element;
|
2012-03-06 17:48:07 -05:00
|
|
|
|
|
|
|
api.Value.prototype.initialize.call( this, value, options );
|
|
|
|
|
|
|
|
this.id = id;
|
2012-04-25 12:04:51 -04:00
|
|
|
this.transport = this.transport || 'refresh';
|
2012-03-06 17:48:07 -05:00
|
|
|
|
2012-04-03 18:04:40 -04:00
|
|
|
this.bind( this.preview );
|
2012-03-06 17:48:07 -05:00
|
|
|
},
|
2012-04-03 18:04:40 -04:00
|
|
|
preview: function() {
|
2012-04-25 12:04:51 -04:00
|
|
|
switch ( this.transport ) {
|
2012-03-06 17:48:07 -05:00
|
|
|
case 'refresh':
|
|
|
|
return this.previewer.refresh();
|
|
|
|
case 'postMessage':
|
|
|
|
return this.previewer.send( 'setting', [ this.id, this() ] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-03-28 00:14:09 -04:00
|
|
|
api.Control = api.Class.extend({
|
|
|
|
initialize: function( id, options ) {
|
|
|
|
var control = this,
|
|
|
|
nodes, radios, settings;
|
|
|
|
|
|
|
|
this.params = {};
|
|
|
|
$.extend( this, options || {} );
|
|
|
|
|
|
|
|
this.id = id;
|
2012-03-28 05:10:29 -04:00
|
|
|
this.selector = '#customize-control-' + id.replace( ']', '' ).replace( '[', '-' );
|
|
|
|
this.container = $( this.selector );
|
2012-03-28 00:14:09 -04:00
|
|
|
|
|
|
|
settings = $.map( this.params.settings, function( value ) {
|
|
|
|
return value;
|
|
|
|
});
|
|
|
|
|
|
|
|
api.apply( api, settings.concat( function() {
|
|
|
|
var key;
|
|
|
|
|
|
|
|
control.settings = {};
|
|
|
|
for ( key in control.params.settings ) {
|
|
|
|
control.settings[ key ] = api( control.params.settings[ key ] );
|
|
|
|
}
|
|
|
|
|
|
|
|
control.setting = control.settings['default'] || null;
|
|
|
|
control.ready();
|
|
|
|
}) );
|
|
|
|
|
|
|
|
control.elements = [];
|
|
|
|
|
|
|
|
nodes = this.container.find('[data-customize-setting-link]');
|
|
|
|
radios = {};
|
|
|
|
|
|
|
|
nodes.each( function() {
|
|
|
|
var node = $(this),
|
|
|
|
name;
|
|
|
|
|
|
|
|
if ( node.is(':radio') ) {
|
|
|
|
name = node.prop('name');
|
|
|
|
if ( radios[ name ] )
|
|
|
|
return;
|
|
|
|
|
|
|
|
radios[ name ] = true;
|
|
|
|
node = nodes.filter( '[name="' + name + '"]' );
|
|
|
|
}
|
|
|
|
|
|
|
|
api( node.data('customizeSettingLink'), function( setting ) {
|
|
|
|
var element = new api.Element( node );
|
|
|
|
control.elements.push( element );
|
2012-04-03 18:04:40 -04:00
|
|
|
element.sync( setting );
|
|
|
|
element.set( setting() );
|
2012-03-28 00:14:09 -04:00
|
|
|
});
|
|
|
|
});
|
2012-04-25 17:03:29 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
ready: function() {},
|
|
|
|
|
|
|
|
dropdownInit: function() {
|
|
|
|
var control = this,
|
|
|
|
statuses = this.container.find('.dropdown-status'),
|
|
|
|
params = this.params,
|
|
|
|
update = function( to ) {
|
|
|
|
if ( typeof to === 'string' && params.statuses && params.statuses[ to ] )
|
|
|
|
statuses.html( params.statuses[ to ] ).show();
|
|
|
|
else
|
|
|
|
statuses.hide();
|
|
|
|
};
|
2012-04-19 22:39:55 -04:00
|
|
|
|
|
|
|
// Support the .dropdown class to open/close complex elements
|
|
|
|
this.container.on( 'click', '.dropdown', function( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
control.container.toggleClass('open');
|
|
|
|
});
|
2012-04-25 17:03:29 -04:00
|
|
|
|
|
|
|
this.setting.bind( update );
|
|
|
|
update( this.setting() );
|
|
|
|
}
|
2012-03-28 00:14:09 -04:00
|
|
|
});
|
|
|
|
|
2012-03-06 17:48:07 -05:00
|
|
|
api.ColorControl = api.Control.extend({
|
2012-03-28 00:14:09 -04:00
|
|
|
ready: function() {
|
|
|
|
var control = this,
|
2012-05-26 14:44:31 -04:00
|
|
|
rhex, spot, input, text, update;
|
2012-03-06 17:48:07 -05:00
|
|
|
|
2012-05-26 14:44:31 -04:00
|
|
|
rhex = /^#([A-Fa-f0-9]{3}){0,2}$/;
|
2012-04-25 17:03:29 -04:00
|
|
|
spot = this.container.find('.dropdown-content');
|
2012-05-26 14:44:31 -04:00
|
|
|
input = new api.Element( this.container.find('.color-picker-hex') );
|
2012-03-06 17:48:07 -05:00
|
|
|
update = function( color ) {
|
2012-04-17 18:58:58 -04:00
|
|
|
spot.css( 'background', color );
|
2012-03-28 00:14:09 -04:00
|
|
|
control.farbtastic.setColor( color );
|
2012-03-06 17:48:07 -05:00
|
|
|
};
|
|
|
|
|
2012-05-26 14:44:31 -04:00
|
|
|
this.farbtastic = $.farbtastic( this.container.find('.farbtastic-placeholder'), control.setting.set );
|
|
|
|
|
|
|
|
// Only pass through values that are valid hexes/empty.
|
2012-06-07 13:25:00 -04:00
|
|
|
input.sync( this.setting ).validate = function( to ) {
|
2012-05-26 14:44:31 -04:00
|
|
|
return rhex.test( to ) ? to : null;
|
|
|
|
};
|
2012-03-06 17:48:07 -05:00
|
|
|
|
2012-03-28 00:14:09 -04:00
|
|
|
this.setting.bind( update );
|
|
|
|
update( this.setting() );
|
2012-04-25 17:03:29 -04:00
|
|
|
|
|
|
|
this.dropdownInit();
|
2012-03-06 17:48:07 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-03-15 00:14:05 -04:00
|
|
|
api.UploadControl = api.Control.extend({
|
2012-03-28 00:14:09 -04:00
|
|
|
ready: function() {
|
2012-03-15 00:14:05 -04:00
|
|
|
var control = this;
|
|
|
|
|
2012-03-24 00:35:13 -04:00
|
|
|
this.params.removed = this.params.removed || '';
|
2012-03-15 00:14:05 -04:00
|
|
|
|
2012-04-19 22:39:55 -04:00
|
|
|
this.success = $.proxy( this.success, this );
|
|
|
|
|
2012-05-09 20:15:53 -04:00
|
|
|
this.uploader = $.extend({
|
2012-05-09 17:26:19 -04:00
|
|
|
container: this.container,
|
|
|
|
browser: this.container.find('.upload'),
|
|
|
|
dropzone: this.container.find('.upload-dropzone'),
|
|
|
|
success: this.success
|
2012-05-09 20:15:53 -04:00
|
|
|
}, this.uploader || {} );
|
|
|
|
|
2012-06-06 17:45:17 -04:00
|
|
|
if ( this.uploader.supported ) {
|
|
|
|
if ( control.params.context )
|
|
|
|
control.uploader.param( 'post_data[context]', this.params.context );
|
|
|
|
|
|
|
|
control.uploader.param( 'post_data[theme]', api.settings.theme.stylesheet );
|
|
|
|
}
|
|
|
|
|
2012-05-09 20:15:53 -04:00
|
|
|
this.uploader = new wp.Uploader( this.uploader );
|
2012-03-15 00:14:05 -04:00
|
|
|
|
2012-03-22 03:30:44 -04:00
|
|
|
this.remover = this.container.find('.remove');
|
|
|
|
this.remover.click( function( event ) {
|
2012-03-28 00:14:09 -04:00
|
|
|
control.setting.set( control.params.removed );
|
2012-03-15 00:14:05 -04:00
|
|
|
event.preventDefault();
|
|
|
|
});
|
2012-03-22 03:30:44 -04:00
|
|
|
|
2012-03-28 00:14:09 -04:00
|
|
|
this.removerVisibility = $.proxy( this.removerVisibility, this );
|
|
|
|
this.setting.bind( this.removerVisibility );
|
|
|
|
this.removerVisibility( this.setting.get() );
|
2012-03-22 03:30:44 -04:00
|
|
|
},
|
2012-04-19 22:39:55 -04:00
|
|
|
success: function( attachment ) {
|
|
|
|
this.setting.set( attachment.url );
|
|
|
|
},
|
2012-03-24 00:35:13 -04:00
|
|
|
removerVisibility: function( to ) {
|
|
|
|
this.remover.toggle( to != this.params.removed );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
api.ImageControl = api.UploadControl.extend({
|
2012-03-28 05:33:32 -04:00
|
|
|
ready: function() {
|
2012-04-19 22:39:55 -04:00
|
|
|
var control = this,
|
|
|
|
panels;
|
2012-03-25 17:18:32 -04:00
|
|
|
|
2012-05-26 01:55:40 -04:00
|
|
|
this.uploader = {
|
|
|
|
init: function( up ) {
|
|
|
|
var fallback, button;
|
|
|
|
|
2012-06-06 17:45:17 -04:00
|
|
|
if ( this.supports.dragdrop )
|
2012-05-26 01:55:40 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Maintain references while wrapping the fallback button.
|
|
|
|
fallback = control.container.find( '.upload-fallback' );
|
|
|
|
button = fallback.children().detach();
|
|
|
|
|
|
|
|
this.browser.detach().empty().append( button );
|
|
|
|
fallback.append( this.browser ).show();
|
|
|
|
}
|
|
|
|
};
|
2012-05-09 20:15:53 -04:00
|
|
|
|
2012-03-28 05:33:32 -04:00
|
|
|
api.UploadControl.prototype.ready.call( this );
|
|
|
|
|
2012-04-19 22:39:55 -04:00
|
|
|
this.thumbnail = this.container.find('.preview-thumbnail img');
|
2012-03-28 00:14:09 -04:00
|
|
|
this.thumbnailSrc = $.proxy( this.thumbnailSrc, this );
|
|
|
|
this.setting.bind( this.thumbnailSrc );
|
2012-03-25 17:18:32 -04:00
|
|
|
|
|
|
|
this.library = this.container.find('.library');
|
|
|
|
|
2012-04-19 22:39:55 -04:00
|
|
|
// Generate tab objects
|
|
|
|
this.tabs = {};
|
|
|
|
panels = this.library.find('.library-content');
|
|
|
|
|
|
|
|
this.library.children('ul').children('li').each( function() {
|
|
|
|
var link = $(this),
|
|
|
|
id = link.data('customizeTab'),
|
|
|
|
panel = panels.filter('[data-customize-tab="' + id + '"]');
|
|
|
|
|
|
|
|
control.tabs[ id ] = {
|
|
|
|
both: link.add( panel ),
|
|
|
|
link: link,
|
|
|
|
panel: panel
|
|
|
|
};
|
2012-03-25 17:18:32 -04:00
|
|
|
});
|
|
|
|
|
2012-04-19 22:39:55 -04:00
|
|
|
// Select a tab
|
|
|
|
this.selected = this.tabs[ panels.first().data('customizeTab') ];
|
|
|
|
this.selected.both.addClass('library-selected');
|
|
|
|
|
|
|
|
// Bind tab switch events
|
|
|
|
this.library.children('ul').on( 'click', 'li', function( event ) {
|
|
|
|
var id = $(this).data('customizeTab'),
|
|
|
|
tab = control.tabs[ id ];
|
2012-03-25 17:18:32 -04:00
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
2012-04-19 22:39:55 -04:00
|
|
|
if ( tab.link.hasClass('library-selected') )
|
2012-03-25 17:18:32 -04:00
|
|
|
return;
|
|
|
|
|
2012-04-19 22:39:55 -04:00
|
|
|
control.selected.both.removeClass('library-selected');
|
|
|
|
control.selected = tab;
|
|
|
|
control.selected.both.addClass('library-selected');
|
2012-03-25 17:18:32 -04:00
|
|
|
});
|
|
|
|
|
2012-06-09 20:32:19 -04:00
|
|
|
// Bind events to switch image urls.
|
2012-03-25 17:18:32 -04:00
|
|
|
this.library.on( 'click', 'a', function( event ) {
|
2012-04-19 22:39:55 -04:00
|
|
|
var value = $(this).data('customizeImageValue');
|
|
|
|
|
|
|
|
if ( value ) {
|
|
|
|
control.setting.set( value );
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2012-03-25 17:18:32 -04:00
|
|
|
});
|
2012-04-19 22:39:55 -04:00
|
|
|
|
|
|
|
if ( this.tabs.uploaded ) {
|
|
|
|
this.tabs.uploaded.target = this.library.find('.uploaded-target');
|
|
|
|
if ( ! this.tabs.uploaded.panel.find('.thumbnail').length )
|
|
|
|
this.tabs.uploaded.both.addClass('hidden');
|
|
|
|
}
|
2012-04-25 17:03:29 -04:00
|
|
|
|
|
|
|
this.dropdownInit();
|
2012-04-19 22:39:55 -04:00
|
|
|
},
|
|
|
|
success: function( attachment ) {
|
|
|
|
api.UploadControl.prototype.success.call( this, attachment );
|
|
|
|
|
|
|
|
// Add the uploaded image to the uploaded tab.
|
|
|
|
if ( this.tabs.uploaded && this.tabs.uploaded.target.length ) {
|
|
|
|
this.tabs.uploaded.both.removeClass('hidden');
|
|
|
|
|
2012-06-09 20:32:19 -04:00
|
|
|
attachment.element = $( '<a href="#" class="thumbnail"></a>' )
|
2012-04-19 22:39:55 -04:00
|
|
|
.data( 'customizeImageValue', attachment.url )
|
|
|
|
.append( '<img src="' + attachment.url+ '" />' )
|
|
|
|
.appendTo( this.tabs.uploaded.target );
|
|
|
|
}
|
2012-03-24 00:35:13 -04:00
|
|
|
},
|
|
|
|
thumbnailSrc: function( to ) {
|
2012-03-25 17:18:32 -04:00
|
|
|
if ( /^(https?:)?\/\//.test( to ) )
|
2012-03-24 00:35:13 -04:00
|
|
|
this.thumbnail.prop( 'src', to ).show();
|
|
|
|
else
|
|
|
|
this.thumbnail.hide();
|
2012-03-15 00:14:05 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-03-06 17:48:07 -05:00
|
|
|
// Change objects contained within the main customize object to Settings.
|
|
|
|
api.defaultConstructor = api.Setting;
|
|
|
|
|
2012-03-28 00:14:09 -04:00
|
|
|
// Create the collection of Control objects.
|
|
|
|
api.control = new api.Values({ defaultConstructor: api.Control });
|
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
api.PreviewFrame = api.Messenger.extend({
|
|
|
|
sensitivity: 2000,
|
|
|
|
|
|
|
|
initialize: function( params, options ) {
|
2012-06-12 18:51:55 -04:00
|
|
|
var deferred = $.Deferred(),
|
2012-06-04 11:51:46 -04:00
|
|
|
self = this;
|
|
|
|
|
|
|
|
// This is the promise object.
|
|
|
|
deferred.promise( this );
|
|
|
|
|
|
|
|
this.previewer = params.previewer;
|
|
|
|
|
|
|
|
$.extend( params, { channel: api.PreviewFrame.uuid() });
|
|
|
|
|
|
|
|
api.Messenger.prototype.initialize.call( this, params, options );
|
|
|
|
|
2012-06-08 18:59:48 -04:00
|
|
|
this.add( 'previewUrl', params.previewUrl );
|
|
|
|
|
2012-06-12 18:51:55 -04:00
|
|
|
this.query = $.extend( params.query || {}, { customize_messenger_channel: this.channel() });
|
|
|
|
|
|
|
|
this.run( deferred );
|
|
|
|
},
|
|
|
|
|
|
|
|
run: function( deferred ) {
|
|
|
|
var self = this,
|
|
|
|
loaded = false,
|
|
|
|
ready = false;
|
|
|
|
|
|
|
|
if ( this._ready )
|
|
|
|
this.unbind( 'ready', this._ready );
|
|
|
|
|
|
|
|
this._ready = function() {
|
2012-06-04 11:51:46 -04:00
|
|
|
ready = true;
|
|
|
|
|
|
|
|
if ( loaded )
|
|
|
|
deferred.resolveWith( self );
|
2012-06-12 18:51:55 -04:00
|
|
|
};
|
2012-06-04 11:51:46 -04:00
|
|
|
|
2012-06-12 18:51:55 -04:00
|
|
|
this.bind( 'ready', this._ready );
|
2012-06-04 11:51:46 -04:00
|
|
|
|
2012-06-08 18:59:48 -04:00
|
|
|
this.request = $.ajax( this.previewUrl(), {
|
2012-06-04 11:51:46 -04:00
|
|
|
type: 'POST',
|
2012-06-12 18:51:55 -04:00
|
|
|
data: this.query,
|
2012-06-04 11:51:46 -04:00
|
|
|
xhrFields: {
|
|
|
|
withCredentials: true
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
this.request.fail( function() {
|
|
|
|
deferred.rejectWith( self, [ 'request failure' ] );
|
|
|
|
});
|
|
|
|
|
|
|
|
this.request.done( function( response ) {
|
|
|
|
var location = self.request.getResponseHeader('Location'),
|
|
|
|
signature = 'WP_CUSTOMIZER_SIGNATURE',
|
|
|
|
index;
|
|
|
|
|
|
|
|
// Check if the location response header differs from the current URL.
|
|
|
|
// If so, the request was redirected; try loading the requested page.
|
2012-06-08 18:59:48 -04:00
|
|
|
if ( location && location != self.previewUrl() ) {
|
2012-06-04 11:51:46 -04:00
|
|
|
deferred.rejectWith( self, [ 'redirect', location ] );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-08 15:22:11 -04:00
|
|
|
// Check if the user is not logged in.
|
|
|
|
if ( '0' === response ) {
|
2012-06-12 18:51:55 -04:00
|
|
|
self.login( deferred );
|
2012-06-08 15:22:11 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for cheaters.
|
|
|
|
if ( '-1' === response ) {
|
|
|
|
deferred.rejectWith( self, [ 'cheatin' ] );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
// Check for a signature in the request.
|
|
|
|
index = response.lastIndexOf( signature );
|
|
|
|
if ( -1 === index || index < response.lastIndexOf('</html>') ) {
|
|
|
|
deferred.rejectWith( self, [ 'unsigned' ] );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Strip the signature from the request.
|
|
|
|
response = response.slice( 0, index ) + response.slice( index + signature.length );
|
|
|
|
|
|
|
|
// Create the iframe and inject the html content.
|
|
|
|
self.iframe = $('<iframe />').appendTo( self.previewer.container );
|
|
|
|
|
|
|
|
// Bind load event after the iframe has been added to the page;
|
|
|
|
// otherwise it will fire when injected into the DOM.
|
|
|
|
self.iframe.one( 'load', function() {
|
|
|
|
loaded = true;
|
|
|
|
|
|
|
|
if ( ready ) {
|
|
|
|
deferred.resolveWith( self );
|
|
|
|
} else {
|
|
|
|
setTimeout( function() {
|
|
|
|
deferred.rejectWith( self, [ 'ready timeout' ] );
|
|
|
|
}, self.sensitivity );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
self.targetWindow( self.iframe[0].contentWindow );
|
|
|
|
|
|
|
|
self.targetWindow().document.open();
|
|
|
|
self.targetWindow().document.write( response );
|
|
|
|
self.targetWindow().document.close();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2012-06-12 18:51:55 -04:00
|
|
|
login: function( deferred ) {
|
|
|
|
var self = this,
|
|
|
|
reject;
|
|
|
|
|
|
|
|
reject = function() {
|
|
|
|
deferred.rejectWith( self, [ 'logged out' ] );
|
|
|
|
};
|
|
|
|
|
|
|
|
if ( this.triedLogin )
|
|
|
|
return reject();
|
|
|
|
|
|
|
|
// Check if we have an admin cookie.
|
|
|
|
$.get( api.settings.url.ajax, {
|
|
|
|
action: 'logged-in'
|
|
|
|
}).fail( reject ).done( function( response ) {
|
|
|
|
var iframe;
|
|
|
|
|
|
|
|
if ( '1' !== response )
|
|
|
|
reject();
|
|
|
|
|
|
|
|
iframe = $('<iframe src="' + self.previewUrl() + '" />').hide();
|
|
|
|
iframe.appendTo( self.previewer.container );
|
|
|
|
iframe.load( function() {
|
|
|
|
self.triedLogin = true;
|
|
|
|
|
|
|
|
iframe.remove();
|
|
|
|
self.run( deferred );
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
destroy: function() {
|
|
|
|
api.Messenger.prototype.destroy.call( this );
|
|
|
|
this.request.abort();
|
|
|
|
|
|
|
|
if ( this.iframe )
|
|
|
|
this.iframe.remove();
|
|
|
|
|
|
|
|
delete this.request;
|
|
|
|
delete this.iframe;
|
|
|
|
delete this.targetWindow;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
(function(){
|
|
|
|
var uuid = 0;
|
|
|
|
api.PreviewFrame.uuid = function() {
|
|
|
|
return 'preview-' + uuid++;
|
|
|
|
};
|
|
|
|
}());
|
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
api.Previewer = api.Messenger.extend({
|
2012-02-28 20:17:21 -05:00
|
|
|
refreshBuffer: 250,
|
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
/**
|
|
|
|
* Requires params:
|
2012-06-08 18:59:48 -04:00
|
|
|
* - container - a selector or jQuery element
|
|
|
|
* - previewUrl - the URL of preview frame
|
2012-02-24 23:12:43 -05:00
|
|
|
*/
|
|
|
|
initialize: function( params, options ) {
|
2012-05-24 15:17:49 -04:00
|
|
|
var self = this,
|
2012-06-08 14:45:12 -04:00
|
|
|
rscheme = /^https?/,
|
|
|
|
url;
|
2012-04-16 10:02:28 -04:00
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
$.extend( this, options || {} );
|
|
|
|
|
2012-02-28 20:17:21 -05:00
|
|
|
/*
|
|
|
|
* Wrap this.refresh to prevent it from hammering the servers:
|
|
|
|
*
|
|
|
|
* If refresh is called once and no other refresh requests are
|
|
|
|
* loading, trigger the request immediately.
|
|
|
|
*
|
|
|
|
* If refresh is called while another refresh request is loading,
|
|
|
|
* debounce the refresh requests:
|
|
|
|
* 1. Stop the loading request (as it is instantly outdated).
|
|
|
|
* 2. Trigger the new request once refresh hasn't been called for
|
|
|
|
* self.refreshBuffer milliseconds.
|
|
|
|
*/
|
|
|
|
this.refresh = (function( self ) {
|
|
|
|
var refresh = self.refresh,
|
|
|
|
callback = function() {
|
|
|
|
timeout = null;
|
|
|
|
refresh.call( self );
|
|
|
|
},
|
|
|
|
timeout;
|
|
|
|
|
|
|
|
return function() {
|
|
|
|
if ( typeof timeout !== 'number' ) {
|
|
|
|
if ( self.loading ) {
|
2012-06-04 11:51:46 -04:00
|
|
|
self.abort();
|
2012-02-28 20:17:21 -05:00
|
|
|
} else {
|
|
|
|
return callback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
clearTimeout( timeout );
|
|
|
|
timeout = setTimeout( callback, self.refreshBuffer );
|
|
|
|
};
|
|
|
|
})( this );
|
|
|
|
|
2012-05-24 15:17:49 -04:00
|
|
|
this.container = api.ensure( params.container );
|
|
|
|
this.allowedUrls = params.allowedUrls;
|
2012-02-28 20:17:21 -05:00
|
|
|
|
2012-06-08 18:59:48 -04:00
|
|
|
params.url = window.location.href;
|
2012-06-08 14:45:12 -04:00
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
api.Messenger.prototype.initialize.call( this, params );
|
2012-02-24 23:12:43 -05:00
|
|
|
|
2012-05-24 15:17:49 -04:00
|
|
|
this.add( 'scheme', this.origin() ).link( this.origin ).setter( function( to ) {
|
|
|
|
var match = to.match( rscheme );
|
|
|
|
return match ? match[0] : '';
|
|
|
|
});
|
|
|
|
|
2012-05-23 21:48:32 -04:00
|
|
|
// Limit the URL to internal, front-end links.
|
2012-05-24 15:17:49 -04:00
|
|
|
//
|
|
|
|
// If the frontend and the admin are served from the same domain, load the
|
|
|
|
// preview over ssl if the customizer is being loaded over ssl. This avoids
|
|
|
|
// insecure content warnings. This is not attempted if the admin and frontend
|
|
|
|
// are on different domains to avoid the case where the frontend doesn't have
|
|
|
|
// ssl certs.
|
|
|
|
|
2012-06-08 18:59:48 -04:00
|
|
|
this.add( 'previewUrl', params.previewUrl ).setter( function( to ) {
|
2012-05-24 15:17:49 -04:00
|
|
|
var result;
|
|
|
|
|
|
|
|
// Check for URLs that include "/wp-admin/" or end in "/wp-admin".
|
|
|
|
// Strip hashes and query strings before testing.
|
|
|
|
if ( /\/wp-admin(\/|$)/.test( to.replace(/[#?].*$/, '') ) )
|
2012-05-23 21:48:32 -04:00
|
|
|
return null;
|
|
|
|
|
2012-05-24 15:17:49 -04:00
|
|
|
// Attempt to match the URL to the control frame's scheme
|
|
|
|
// and check if it's allowed. If not, try the original URL.
|
|
|
|
$.each([ to.replace( rscheme, self.scheme() ), to ], function( i, url ) {
|
|
|
|
$.each( self.allowedUrls, function( i, allowed ) {
|
|
|
|
if ( 0 === url.indexOf( allowed ) ) {
|
|
|
|
result = url;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if ( result )
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
// If we found a matching result, return it. If not, bail.
|
|
|
|
return result ? result : null;
|
2012-05-23 21:48:32 -04:00
|
|
|
});
|
2012-02-24 23:12:43 -05:00
|
|
|
|
2012-06-08 14:45:12 -04:00
|
|
|
// Refresh the preview when the URL is changed (but not yet).
|
2012-06-08 18:59:48 -04:00
|
|
|
this.previewUrl.bind( this.refresh );
|
2012-05-23 21:48:32 -04:00
|
|
|
|
|
|
|
this.scroll = 0;
|
|
|
|
this.bind( 'scroll', function( distance ) {
|
|
|
|
this.scroll = distance;
|
2012-02-24 23:12:43 -05:00
|
|
|
});
|
2012-05-23 21:48:32 -04:00
|
|
|
|
|
|
|
// Update the URL when the iframe sends a URL message.
|
2012-06-08 18:59:48 -04:00
|
|
|
this.bind( 'url', this.previewUrl );
|
2012-02-24 23:12:43 -05:00
|
|
|
},
|
2012-02-28 20:17:21 -05:00
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
query: function() {},
|
2012-02-28 20:17:21 -05:00
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
abort: function() {
|
|
|
|
if ( this.loading ) {
|
|
|
|
this.loading.destroy();
|
|
|
|
delete this.loading;
|
|
|
|
}
|
2012-02-28 20:17:21 -05:00
|
|
|
},
|
2012-04-30 11:46:17 -04:00
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
refresh: function() {
|
2012-04-30 11:46:17 -04:00
|
|
|
var self = this;
|
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
this.abort();
|
2012-04-30 11:46:17 -04:00
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
this.loading = new api.PreviewFrame({
|
2012-06-08 18:59:48 -04:00
|
|
|
url: this.url(),
|
|
|
|
previewUrl: this.previewUrl(),
|
|
|
|
query: this.query() || {},
|
|
|
|
previewer: this
|
2012-06-04 11:51:46 -04:00
|
|
|
});
|
2012-04-30 11:46:17 -04:00
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
this.loading.done( function() {
|
|
|
|
// 'this' is the loading frame
|
|
|
|
this.bind( 'synced', function() {
|
2012-06-08 18:59:48 -04:00
|
|
|
if ( self.preview )
|
|
|
|
self.preview.destroy();
|
|
|
|
self.preview = this;
|
2012-06-04 11:51:46 -04:00
|
|
|
delete self.loading;
|
2012-05-26 00:08:44 -04:00
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
self.targetWindow( this.targetWindow() );
|
|
|
|
self.channel( this.channel() );
|
|
|
|
});
|
2012-05-26 00:08:44 -04:00
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
this.send( 'sync', {
|
|
|
|
scroll: self.scroll,
|
|
|
|
settings: api.get()
|
|
|
|
});
|
|
|
|
});
|
2012-02-29 17:24:46 -05:00
|
|
|
|
2012-06-04 11:51:46 -04:00
|
|
|
this.loading.fail( function( reason, location ) {
|
|
|
|
if ( 'redirect' === reason && location )
|
2012-06-08 18:59:48 -04:00
|
|
|
self.previewUrl( location );
|
2012-06-08 15:22:11 -04:00
|
|
|
|
|
|
|
if ( 'logged out' === reason ) {
|
2012-06-08 18:59:48 -04:00
|
|
|
if ( self.preview ) {
|
|
|
|
self.preview.destroy();
|
|
|
|
delete self.preview;
|
2012-06-08 15:22:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
self.login().done( self.refresh );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( 'cheatin' === reason )
|
|
|
|
self.cheatin();
|
2012-06-04 11:51:46 -04:00
|
|
|
});
|
2012-06-08 15:22:11 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
login: function() {
|
|
|
|
var previewer = this,
|
|
|
|
deferred, messenger, iframe;
|
|
|
|
|
|
|
|
if ( this._login )
|
|
|
|
return this._login;
|
|
|
|
|
|
|
|
deferred = $.Deferred();
|
|
|
|
this._login = deferred.promise();
|
|
|
|
|
|
|
|
messenger = new api.Messenger({
|
|
|
|
channel: 'login',
|
|
|
|
url: api.settings.url.login
|
|
|
|
});
|
|
|
|
|
|
|
|
iframe = $('<iframe src="' + api.settings.url.login + '" />').appendTo( this.container );
|
|
|
|
|
|
|
|
messenger.targetWindow( iframe[0].contentWindow );
|
|
|
|
|
|
|
|
messenger.bind( 'login', function() {
|
|
|
|
iframe.remove();
|
|
|
|
messenger.destroy();
|
|
|
|
delete previewer._login;
|
|
|
|
deferred.resolve();
|
|
|
|
});
|
|
|
|
|
|
|
|
return this._login;
|
|
|
|
},
|
|
|
|
|
|
|
|
cheatin: function() {
|
|
|
|
$( document.body ).empty().addClass('cheatin').append( '<p>' + api.l10n.cheatin + '</p>' );
|
2012-02-24 23:12:43 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/* =====================================================================
|
|
|
|
* Ready.
|
|
|
|
* ===================================================================== */
|
|
|
|
|
2012-03-28 00:14:09 -04:00
|
|
|
api.controlConstructor = {
|
2012-03-15 00:14:05 -04:00
|
|
|
color: api.ColorControl,
|
2012-03-24 00:35:13 -04:00
|
|
|
upload: api.UploadControl,
|
|
|
|
image: api.ImageControl
|
2012-03-06 17:48:07 -05:00
|
|
|
};
|
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
$( function() {
|
2012-05-07 16:03:39 -04:00
|
|
|
api.settings = window._wpCustomizeSettings;
|
2012-05-16 01:55:54 -04:00
|
|
|
api.l10n = window._wpCustomizeControlsL10n;
|
|
|
|
|
2012-05-25 13:42:06 -04:00
|
|
|
// Check if we can run the customizer.
|
2012-02-28 20:17:21 -05:00
|
|
|
if ( ! api.settings )
|
|
|
|
return;
|
|
|
|
|
2012-05-25 13:42:06 -04:00
|
|
|
// Redirect to the fallback preview if any incompatibilities are found.
|
2012-05-24 17:13:21 -04:00
|
|
|
if ( ! $.support.postMessage || ( ! $.support.cors && api.settings.isCrossDomain ) )
|
|
|
|
return window.location = api.settings.url.fallback;
|
|
|
|
|
2012-04-16 10:02:28 -04:00
|
|
|
var body = $( document.body ),
|
2012-06-06 17:45:17 -04:00
|
|
|
overlay = body.children('.wp-full-overlay'),
|
2012-04-30 11:46:17 -04:00
|
|
|
query, previewer, parent;
|
|
|
|
|
|
|
|
// Prevent the form from saving when enter is pressed.
|
|
|
|
$('#customize-controls').on( 'keydown', function( e ) {
|
2012-06-07 18:00:59 -04:00
|
|
|
if ( $( e.target ).is('textarea') )
|
|
|
|
return;
|
|
|
|
|
2012-04-30 11:46:17 -04:00
|
|
|
if ( 13 === e.which ) // Enter
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
|
|
|
|
2012-05-25 13:42:06 -04:00
|
|
|
// Initialize Previewer
|
2012-04-30 11:46:17 -04:00
|
|
|
previewer = new api.Previewer({
|
2012-05-24 15:17:49 -04:00
|
|
|
container: '#customize-preview',
|
|
|
|
form: '#customize-controls',
|
2012-06-08 18:59:48 -04:00
|
|
|
previewUrl: api.settings.url.preview,
|
2012-05-24 15:17:49 -04:00
|
|
|
allowedUrls: api.settings.url.allowed
|
2012-04-30 11:46:17 -04:00
|
|
|
}, {
|
|
|
|
query: function() {
|
|
|
|
return {
|
2012-06-06 21:29:57 -04:00
|
|
|
wp_customize: 'on',
|
|
|
|
theme: api.settings.theme.stylesheet,
|
|
|
|
customized: JSON.stringify( api.get() )
|
2012-04-30 11:46:17 -04:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
nonce: $('#_wpnonce').val(),
|
|
|
|
|
|
|
|
save: function() {
|
2012-06-08 15:22:11 -04:00
|
|
|
var self = this,
|
|
|
|
query = $.extend( this.query(), {
|
2012-04-30 11:46:17 -04:00
|
|
|
action: 'customize_save',
|
|
|
|
nonce: this.nonce
|
|
|
|
}),
|
2012-05-16 01:55:54 -04:00
|
|
|
request = $.post( api.settings.url.ajax, query );
|
|
|
|
|
|
|
|
api.trigger( 'save', request );
|
2012-04-30 11:46:17 -04:00
|
|
|
|
|
|
|
body.addClass('saving');
|
2012-05-25 13:42:06 -04:00
|
|
|
|
2012-04-30 11:46:17 -04:00
|
|
|
request.always( function() {
|
|
|
|
body.removeClass('saving');
|
|
|
|
});
|
2012-05-25 13:42:06 -04:00
|
|
|
|
2012-06-08 15:22:11 -04:00
|
|
|
request.done( function( response ) {
|
|
|
|
// Check if the user is logged out.
|
|
|
|
if ( '0' === response ) {
|
2012-06-08 18:59:48 -04:00
|
|
|
self.preview.iframe.hide();
|
2012-06-08 15:22:11 -04:00
|
|
|
self.login().done( function() {
|
|
|
|
self.save();
|
2012-06-08 18:59:48 -04:00
|
|
|
self.preview.iframe.show();
|
2012-06-08 15:22:11 -04:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for cheaters.
|
|
|
|
if ( '-1' === response ) {
|
|
|
|
self.cheatin();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-05-25 13:42:06 -04:00
|
|
|
api.trigger( 'saved' );
|
|
|
|
});
|
2012-04-30 11:46:17 -04:00
|
|
|
}
|
|
|
|
});
|
2012-02-24 23:12:43 -05:00
|
|
|
|
2012-03-28 00:14:09 -04:00
|
|
|
$.each( api.settings.settings, function( id, data ) {
|
2012-05-15 18:14:46 -04:00
|
|
|
api.create( id, id, data.value, {
|
2012-04-25 12:04:51 -04:00
|
|
|
transport: data.transport,
|
2012-03-28 00:14:09 -04:00
|
|
|
previewer: previewer
|
|
|
|
} );
|
|
|
|
});
|
|
|
|
|
2012-03-06 17:48:07 -05:00
|
|
|
$.each( api.settings.controls, function( id, data ) {
|
2012-03-28 00:14:09 -04:00
|
|
|
var constructor = api.controlConstructor[ data.type ] || api.Control,
|
2012-03-22 03:17:26 -04:00
|
|
|
control;
|
|
|
|
|
2012-03-28 00:14:09 -04:00
|
|
|
control = api.control.add( id, new constructor( id, {
|
2012-03-29 02:35:54 -04:00
|
|
|
params: data,
|
2012-03-06 17:48:07 -05:00
|
|
|
previewer: previewer
|
|
|
|
} ) );
|
2012-02-24 23:12:43 -05:00
|
|
|
});
|
|
|
|
|
2012-06-08 14:45:12 -04:00
|
|
|
// Check if preview url is valid and load the preview frame.
|
2012-06-08 18:59:48 -04:00
|
|
|
if ( previewer.previewUrl() )
|
2012-06-08 14:45:12 -04:00
|
|
|
previewer.refresh();
|
|
|
|
else
|
2012-06-08 18:59:48 -04:00
|
|
|
previewer.previewUrl( api.settings.url.home );
|
2012-04-30 11:46:17 -04:00
|
|
|
|
2012-05-25 13:42:06 -04:00
|
|
|
// Save and activated states
|
|
|
|
(function() {
|
|
|
|
var state = new api.Values(),
|
|
|
|
saved = state.create('saved'),
|
|
|
|
activated = state.create('activated');
|
|
|
|
|
|
|
|
state.bind( 'change', function() {
|
|
|
|
var save = $('#save'),
|
|
|
|
back = $('.back');
|
|
|
|
|
|
|
|
if ( ! activated() ) {
|
|
|
|
save.val( api.l10n.activate ).prop( 'disabled', false );
|
|
|
|
back.text( api.l10n.cancel );
|
|
|
|
|
|
|
|
} else if ( saved() ) {
|
|
|
|
save.val( api.l10n.saved ).prop( 'disabled', true );
|
|
|
|
back.text( api.l10n.close );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
save.val( api.l10n.save ).prop( 'disabled', false );
|
|
|
|
back.text( api.l10n.cancel );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Set default states.
|
|
|
|
saved( true );
|
|
|
|
activated( api.settings.theme.active );
|
|
|
|
|
|
|
|
api.bind( 'change', function() {
|
|
|
|
state('saved').set( false );
|
|
|
|
});
|
|
|
|
|
|
|
|
api.bind( 'saved', function() {
|
|
|
|
state('saved').set( true );
|
|
|
|
state('activated').set( true );
|
|
|
|
});
|
|
|
|
|
|
|
|
activated.bind( function( to ) {
|
|
|
|
if ( to )
|
|
|
|
api.trigger( 'activated' );
|
|
|
|
});
|
|
|
|
|
|
|
|
// Expose states to the API.
|
|
|
|
api.state = state;
|
|
|
|
}());
|
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
// Temporary accordion code.
|
2012-05-26 16:47:55 -04:00
|
|
|
$('.customize-section-title').click( function( event ) {
|
2012-05-21 15:53:22 -04:00
|
|
|
var clicked = $( this ).parents( '.customize-section' );
|
2012-05-26 16:47:55 -04:00
|
|
|
|
|
|
|
if ( clicked.hasClass('cannot-expand') )
|
|
|
|
return;
|
|
|
|
|
2012-05-21 15:53:22 -04:00
|
|
|
$( '.customize-section' ).not( clicked ).removeClass( 'open' );
|
|
|
|
clicked.toggleClass( 'open' );
|
2012-05-26 16:47:55 -04:00
|
|
|
event.preventDefault();
|
2012-02-24 23:12:43 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
// Button bindings.
|
2012-04-16 10:02:28 -04:00
|
|
|
$('#save').click( function( event ) {
|
2012-04-30 11:46:17 -04:00
|
|
|
previewer.save();
|
2012-04-16 10:02:28 -04:00
|
|
|
event.preventDefault();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.collapse-sidebar').click( function( event ) {
|
2012-06-06 17:45:17 -04:00
|
|
|
overlay.toggleClass( 'collapsed' ).toggleClass( 'expanded' );
|
2012-04-16 10:02:28 -04:00
|
|
|
event.preventDefault();
|
2012-02-24 23:12:43 -05:00
|
|
|
});
|
|
|
|
|
2012-04-30 11:46:17 -04:00
|
|
|
// Create a potential postMessage connection with the parent frame.
|
2012-06-04 11:51:46 -04:00
|
|
|
parent = new api.Messenger({
|
|
|
|
url: api.settings.url.parent,
|
|
|
|
channel: 'loader'
|
|
|
|
});
|
2012-04-30 11:46:17 -04:00
|
|
|
|
|
|
|
// If we receive a 'back' event, we're inside an iframe.
|
|
|
|
// Send any clicks to the 'Return' link to the parent page.
|
2012-05-23 23:29:51 -04:00
|
|
|
parent.bind( 'back', function() {
|
|
|
|
$('.back').on( 'click.back', function( event ) {
|
2012-04-30 11:46:17 -04:00
|
|
|
event.preventDefault();
|
|
|
|
parent.send( 'close' );
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-05-25 13:42:06 -04:00
|
|
|
// Pass events through to the parent.
|
2012-06-08 14:52:44 -04:00
|
|
|
api.bind( 'saved', function() {
|
|
|
|
parent.send( 'saved' );
|
|
|
|
});
|
|
|
|
|
|
|
|
// When activated, let the loader handle redirecting the page.
|
|
|
|
// If no loader exists, redirect the page ourselves (if a url exists).
|
|
|
|
api.bind( 'activated', function() {
|
|
|
|
if ( parent.targetWindow() )
|
|
|
|
parent.send( 'activated', api.settings.url.activated );
|
|
|
|
else if ( api.settings.url.activated )
|
|
|
|
window.location = api.settings.url.activated;
|
2012-05-25 13:42:06 -04:00
|
|
|
});
|
2012-05-16 01:55:54 -04:00
|
|
|
|
2012-04-30 11:46:17 -04:00
|
|
|
// Initialize the connection with the parent frame.
|
|
|
|
parent.send( 'ready' );
|
|
|
|
|
2012-04-18 13:13:31 -04:00
|
|
|
// Control visibility for default controls
|
|
|
|
$.each({
|
|
|
|
'background_image': {
|
|
|
|
controls: [ 'background_repeat', 'background_position_x', 'background_attachment' ],
|
|
|
|
callback: function( to ) { return !! to }
|
|
|
|
},
|
|
|
|
'show_on_front': {
|
|
|
|
controls: [ 'page_on_front', 'page_for_posts' ],
|
|
|
|
callback: function( to ) { return 'page' === to }
|
|
|
|
},
|
|
|
|
'header_textcolor': {
|
|
|
|
controls: [ 'header_textcolor' ],
|
|
|
|
callback: function( to ) { return 'blank' !== to }
|
|
|
|
}
|
|
|
|
}, function( settingId, o ) {
|
|
|
|
api( settingId, function( setting ) {
|
|
|
|
$.each( o.controls, function( i, controlId ) {
|
|
|
|
api.control( controlId, function( control ) {
|
|
|
|
var visibility = function( to ) {
|
|
|
|
control.container.toggle( o.callback( to ) );
|
|
|
|
};
|
|
|
|
|
|
|
|
visibility( setting.get() );
|
|
|
|
setting.bind( visibility );
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Juggle the two controls that use header_textcolor
|
2012-03-28 00:14:09 -04:00
|
|
|
api.control( 'display_header_text', function( control ) {
|
|
|
|
var last = '';
|
|
|
|
|
2012-04-03 18:04:40 -04:00
|
|
|
control.elements[0].unsync( api( 'header_textcolor' ) );
|
2012-03-28 00:14:09 -04:00
|
|
|
|
|
|
|
control.element = new api.Element( control.container.find('input') );
|
|
|
|
control.element.set( 'blank' !== control.setting() );
|
|
|
|
|
|
|
|
control.element.bind( function( to ) {
|
|
|
|
if ( ! to )
|
2012-05-15 18:14:46 -04:00
|
|
|
last = api( 'header_textcolor' ).get();
|
2012-03-28 00:14:09 -04:00
|
|
|
|
|
|
|
control.setting.set( to ? last : 'blank' );
|
|
|
|
});
|
|
|
|
|
|
|
|
control.setting.bind( function( to ) {
|
|
|
|
control.element.set( 'blank' !== to );
|
|
|
|
});
|
|
|
|
});
|
2012-05-16 20:00:57 -04:00
|
|
|
|
2012-06-09 20:32:19 -04:00
|
|
|
// Handle header image data
|
|
|
|
api.control( 'header_image', function( control ) {
|
|
|
|
control.setting.bind( function( to ) {
|
|
|
|
if ( to === control.params.removed )
|
|
|
|
control.settings.data.set( false );
|
|
|
|
});
|
|
|
|
|
|
|
|
control.library.on( 'click', 'a', function( event ) {
|
|
|
|
control.settings.data.set( $(this).data('customizeHeaderImageData') );
|
|
|
|
});
|
|
|
|
|
|
|
|
control.uploader.success = function( attachment ) {
|
|
|
|
var data;
|
|
|
|
|
|
|
|
api.ImageControl.prototype.success.call( control, attachment );
|
|
|
|
|
|
|
|
data = {
|
|
|
|
attachment_id: attachment.id,
|
|
|
|
url: attachment.url,
|
|
|
|
thumbnail_url: attachment.url,
|
|
|
|
height: attachment.meta.height,
|
|
|
|
width: attachment.meta.width
|
|
|
|
};
|
|
|
|
|
|
|
|
attachment.element.data( 'customizeHeaderImageData', data );
|
|
|
|
control.settings.data.set( data );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-05-16 20:00:57 -04:00
|
|
|
api.trigger( 'ready' );
|
2012-02-24 23:12:43 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
})( wp, jQuery );
|