2012-02-24 23:12:43 -05:00
|
|
|
(function( exports, $ ){
|
|
|
|
var api = wp.customize;
|
|
|
|
|
|
|
|
api.Preview = api.Messenger.extend({
|
|
|
|
/**
|
|
|
|
* Requires params:
|
|
|
|
* - url - the URL of preview frame
|
|
|
|
*
|
|
|
|
* @todo: Perhaps add a window.onbeforeunload dialog in case the theme
|
|
|
|
* somehow attempts to leave the page and we don't catch it
|
|
|
|
* (which really shouldn't happen).
|
|
|
|
*/
|
|
|
|
initialize: function( url, options ) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
$.extend( this, options || {} );
|
|
|
|
|
|
|
|
api.Messenger.prototype.initialize.call( this, url );
|
|
|
|
|
|
|
|
this.body = $( document.body );
|
|
|
|
this.body.on( 'click.preview', 'a', function( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
self.send( 'url', $(this).attr('href') );
|
|
|
|
});
|
|
|
|
|
|
|
|
// You cannot submit forms.
|
|
|
|
// @todo: Namespace customizer settings so that we can mix the
|
|
|
|
// $_POST data with the customize setting $_POST data.
|
|
|
|
this.body.on( 'submit.preview', 'form', function( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
|
|
|
|
|
|
|
this.bind( 'url', function( url ) {
|
|
|
|
this.url( url );
|
|
|
|
this.refresh();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
refresh: function() {
|
|
|
|
this.submit({
|
|
|
|
target: this.iframe.prop('name'),
|
|
|
|
action: this.url()
|
|
|
|
});
|
|
|
|
},
|
|
|
|
submit: function( props ) {
|
|
|
|
if ( props )
|
|
|
|
this.form.prop( props );
|
|
|
|
this.form.submit();
|
|
|
|
if ( props )
|
|
|
|
this.form.prop( this._formOriginalProps );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$( function() {
|
2012-03-05 21:49:02 -05:00
|
|
|
if ( ! api.settings )
|
|
|
|
return;
|
|
|
|
|
|
|
|
var preview, body;
|
2012-02-24 23:12:43 -05:00
|
|
|
|
|
|
|
preview = new api.Preview( api.settings.parent );
|
2012-03-05 21:49:02 -05:00
|
|
|
|
|
|
|
$.each( api.settings.values, function( id, value ) {
|
|
|
|
api.set( id, value );
|
|
|
|
});
|
|
|
|
|
|
|
|
preview.bind( 'setting', function( args ) {
|
|
|
|
api.set.apply( api, args );
|
|
|
|
});
|
|
|
|
|
|
|
|
body = $(document.body);
|
|
|
|
// Auto update background color by default
|
|
|
|
api.bind( 'background_color', function( to ) {
|
|
|
|
body.css( 'background-color', '#' + to );
|
|
|
|
});
|
2012-02-24 23:12:43 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
})( wp, jQuery );
|