mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
545d62e5f0
git-svn-id: http://svn.automattic.com/wordpress/trunk@20250 1a063a9b-81f0-0310-95a4-ce76da25c4cd
70 lines
1.7 KiB
JavaScript
70 lines
1.7 KiB
JavaScript
if ( typeof wp === 'undefined' )
|
|
var wp = {};
|
|
|
|
(function( exports, $ ){
|
|
var Loader = {
|
|
initialize: function() {
|
|
this.body = $( document.body );
|
|
this.element = $( '#customize-container' );
|
|
this.base = $( '.admin-url', this.element ).val();
|
|
|
|
this.element.on( 'click', '.close-full-overlay', function() {
|
|
Loader.close();
|
|
return false;
|
|
});
|
|
|
|
this.element.on( 'click', '.collapse-sidebar', function() {
|
|
Loader.element.toggleClass('collapsed');
|
|
return false;
|
|
});
|
|
},
|
|
open: function( params ) {
|
|
params.customize = 'on';
|
|
|
|
this.iframe = $( '<iframe />', {
|
|
src: this.base + '?' + jQuery.param( params )
|
|
}).appendTo( this.element );
|
|
|
|
this.element.fadeIn( 200, function() {
|
|
Loader.body.addClass( 'customize-active full-overlay-active' );
|
|
});
|
|
},
|
|
close: function() {
|
|
this.element.fadeOut( 200, function() {
|
|
Loader.iframe.remove();
|
|
Loader.iframe = null;
|
|
Loader.body.removeClass( 'customize-active full-overlay-active' );
|
|
});
|
|
}
|
|
};
|
|
|
|
$( function() {
|
|
Loader.initialize();
|
|
|
|
// Override 'preview' links on themes page.
|
|
$('.thickbox-preview').click( function( event ) {
|
|
var href, template, stylesheet;
|
|
|
|
// Stop the thickbox.
|
|
event.preventDefault();
|
|
event.stopImmediatePropagation();
|
|
|
|
// Extract the template/stylesheet from the preview link's url.
|
|
href = $(this).attr('href');
|
|
template = href.match('template=([^&]*)')[1];
|
|
stylesheet = href.match('stylesheet=([^&]*)')[1];
|
|
|
|
// Load the theme.
|
|
Loader.open({
|
|
template: template,
|
|
stylesheet: stylesheet
|
|
});
|
|
}).filter( function() {
|
|
return 'Preview' == $(this).text();
|
|
}).text('Customize');
|
|
});
|
|
|
|
// Expose the API to the world.
|
|
exports.CustomizeLoader = Loader;
|
|
})( wp, jQuery );
|