Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/plugins/redux-framework/redux-core/inc/fields/editor/ |
Upload File : |
/** * Redux Editor on change callback * Dependencies : jquery * Feature added by : Dovy Paukstys * : Kevin Provance (who helped) :P * Date : 07 June 2014 */ /*global redux_change, tinymce, redux*/ (function( $ ) { 'use strict'; redux.field_objects = redux.field_objects || {}; redux.field_objects.editor = redux.field_objects.editor || {}; redux.field_objects.editor.init = function() { var i; var len; setTimeout( function() { if ( 'undefined' !== typeof ( tinymce ) ) { len = tinymce.editors.length; for ( i = 0; i < len; i += 1 ) { redux.field_objects.editor.onChange( i ); } } }, 1000 ); }; redux.field_objects.editor.onChange = function( i ) { tinymce.editors[i].on( 'change', function( e ) { var el = jQuery( e.target.contentAreaContainer ); if ( 0 !== el.parents( '.redux-container-editor:first' ).length ) { redux_change( $( '.wp-editor-area' ) ); } } ); }; })( jQuery );