Advertisement
spikeuk

Untitled

Jun 4th, 2021
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. ( function() {
  2. var initialize = function() {
  3. var init, id, $wrap;
  4.  
  5. for ( id in tinyMCEPreInit.mceInit ) {
  6. init = tinyMCEPreInit.mceInit[id];
  7. $wrap = tinymce.$( '#wp-' + id + '-wrap' );
  8.  
  9. if ( ( $wrap.hasClass( 'tmce-active' ) || ! tinyMCEPreInit.qtInit.hasOwnProperty( id ) ) && ! init.wp_skip_init ) {
  10. tinymce.init( init );
  11.  
  12. if ( ! window.wpActiveEditor ) {
  13. window.wpActiveEditor = id;
  14. }
  15. }
  16. }
  17. }
  18.  
  19. if ( typeof tinymce !== 'undefined' ) {
  20. if ( tinymce.Env.ie && tinymce.Env.ie < 11 ) {
  21. tinymce.$( '.wp-editor-wrap ').removeClass( 'tmce-active' ).addClass( 'html-active' );
  22. } else {
  23. if ( document.readyState === 'complete' || document.readyState === 'interactive' ) {
  24. initialize();
  25. } else {
  26. document.addEventListener( 'DOMContentLoaded', initialize );
  27. }
  28. }
  29. }
  30.  
  31. if ( typeof quicktags !== 'undefined' ) {
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement