/* global requestpost */ /* global wp */ /* global WPEditorWidget */ ( function( $ ) { 'use strict'; wp.customize( 'page_on_front', function( value ) { value.bind( function( newval ) { $.ajax({ url: requestpost.ajaxurl, type: 'post', data: { action: 'atua_ajax_call', pid: newval }, success: function (result) { if(result !== '' && result !== 'undefined' ){ result = JSON.parse(result); var content = result.post_content; jQuery( '#Atua_Page_Editor' ).val(content); WPEditorWidget.setEditorContent('Atua_Page_Editor'); 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 );