Make WordPress Core

Ticket #41124: 41124.diff

File 41124.diff, 1.1 KB (added by UmeshSingla, 6 years ago)

Updated dom and util path for tinymce

  • wp-includes/js/tinymce/tiny_mce_popup.js

     
    5353    }
    5454
    5555    // Setup local DOM
    56     self.dom = self.editor.windowManager.createInstance('tinymce.plugins.dom.DOMUtils', document, {
     56    self.dom = self.editor.windowManager.createInstance('tinymce.dom.DOMUtils', document, {
    5757      ownEvents: true,
    5858      proxy: tinyMCEPopup._eventProxy
    5959    });
  • wp-includes/js/tinymce/utils/mctabs.js

     
    1212
    1313function MCTabs() {
    1414  this.settings = [];
    15   this.onChange = tinyMCEPopup.editor.windowManager.createInstance('tinymce.plugins.util.Dispatcher');
     15  this.onChange = tinyMCEPopup.editor.windowManager.createInstance('tinymce.util.Dispatcher');
    1616}
    1717
    1818MCTabs.prototype.init = function (settings) {