Make WordPress Core

Ticket #26027: 26027.patch

File 26027.patch, 1.7 KB (added by seanchayes, 11 years ago)
  • src/wp-includes/js/tinymce/plugins/wpview/editor_plugin_src.js

     
    22 * WordPress View plugin.
    33 */
    44
     5/* global tinymce */
     6
    57(function() {
    68        var VK = tinymce.VK,
    79                TreeWalker = tinymce.dom.TreeWalker,
     
    810                selected;
    911
    1012        tinymce.create('tinymce.plugins.wpView', {
    11                 init : function( editor, url ) {
     13                init : function( editor ) {
    1214                        var wpView = this;
    1315
    1416                        // Check if the `wp.mce` API exists.
     
    3335
    3436                        // When the editor's content has been updated and the DOM has been
    3537                        // processed, render the views in the document.
    36                         editor.onSetContent.add( function( editor, o ) {
     38                        editor.onSetContent.add( function( editor ) {
    3739                                wp.mce.view.render( editor.getDoc() );
    3840                        });
    3941
     
    4143
    4244                                // When a view is selected, ensure content that is being pasted
    4345                                // or inserted is added to a text node (instead of the view).
    44                                 editor.selection.onBeforeSetContent.add( function( selection, o ) {
     46                                editor.selection.onBeforeSetContent.add( function( selection ) {
    4547                                        var view = wpView.getParentView( selection.getNode() ),
    4648                                                walker, target;
    4749
     
    9597
    9698                        // Triggers when the selection is changed.
    9799                        // Add the event handler to the top of the stack.
    98                         editor.onNodeChange.addToTop( function( editor, controlManager, node, collapsed, o ) {
     100                        editor.onNodeChange.addToTop( function( editor, controlManager, node ) {
    99101                                var view = wpView.getParentView( node );
    100102
    101103                                // Update the selected view.