Make WordPress Core

Ticket #28206: 28206.patch

File 28206.patch, 1.8 KB (added by iseulde, 10 years ago)
  • src/wp-includes/js/tinymce/plugins/wplink/plugin.js

     
    11/* global tinymce */
    22tinymce.PluginManager.add( 'wplink', function( editor ) {
    3         var linkButton;
    4 
    5         // Register a command so that it can be invoked by using tinyMCE.activeEditor.execCommand( 'WP_Link' );
    63        editor.addCommand( 'WP_Link', function() {
    7                 if ( ( ! linkButton || ! linkButton.disabled() ) && typeof window.wpLink !== 'undefined' ) {
    8                         window.wpLink.open( editor.id );
    9                 }
     4                window.wpLink && window.wpLink.open( editor.id );
    105        });
    116
    127        // WP default shortcut
     
    149        // The "de-facto standard" shortcut, see #27305
    1510        editor.addShortcut( 'ctrl+k', '', 'WP_Link' );
    1611
    17         function setState( button, node ) {
    18                 var parent = editor.dom.getParent( node, 'a' ),
    19                         getView = editor.plugins.wpview ? editor.plugins.wpview.getView : function() { return false; };
    20 
    21                 button.disabled( ( editor.selection.isCollapsed() && ! parent ) || ( parent && ! parent.href ) || getView( node ) );
    22                 button.active( parent && parent.href );
    23         }
    24 
    2512        editor.addButton( 'link', {
    2613                icon: 'link',
    2714                tooltip: 'Insert/edit link',
    2815                shortcut: 'Alt+Shift+A',
    2916                cmd: 'WP_Link',
    30 
    31                 onPostRender: function() {
    32                         linkButton = this;
    33 
    34                         editor.on( 'nodechange', function( event ) {
    35                                 setState( linkButton, event.element );
    36                         });
    37                 }
     17                stateSelector: 'a[href]'
    3818        });
    3919
    4020        editor.addButton( 'unlink', {
    4121                icon: 'unlink',
    4222                tooltip: 'Remove link',
    43                 cmd: 'unlink',
    44 
    45                 onPostRender: function() {
    46                         var unlinkButton = this;
    47 
    48                         editor.on( 'nodechange', function( event ) {
    49                                 setState( unlinkButton, event.element );
    50                         });
    51                 }
     23                cmd: 'unlink'
    5224        });
    5325
    5426        editor.addMenuItem( 'link', {