/* global requestpost */ /* global wp */ /* global tinyMCE */ ( function( $ ) { 'use strict'; wp.customize( 'page_on_front', function( value ) { value.bind( function( newval ) { $.ajax( { url: requestpost.ajaxurl, type: 'post', data: { action: 'belise_ajax_call', pid: newval }, beforeSend: function () { }, success: function (result) { if (result !== '' && result !== 'undefined' ) { result = JSON.parse( result ); var id = 'belise_page_editor'; var editor = tinyMCE.get( id ); editor.setContent( result.post_content ); if (result.post_thumbnail !== '' && result.post_thumbnail !== 'undefined') { wp.customize.instance( requestpost.thumbnail_control ).set( result.post_thumbnail ); var html = '' + '
'; wp.customize.control( requestpost.thumbnail_control ).container['0'].innerHTML = html; } wp.customize.instance( requestpost.editor_control ).previewer.refresh(); } } } ); } ); } ); } )( jQuery );