Ticket #37278: remove-icon.diff
File remove-icon.diff, 1.4 KB (added by , 9 years ago) |
---|
-
wp-includes/js/tinymce/plugins/wpeditimage/plugin.js
11 11 12 12 editor.addButton( 'wp_img_remove', { 13 13 tooltip: 'Remove', 14 icon: 'dashicon dashicons- no',14 icon: 'dashicon dashicons-trash', 15 15 onclick: function() { 16 16 removeImage( editor.selection.getNode() ); 17 17 } -
wp-includes/js/tinymce/plugins/wplink/plugin.js
582 582 583 583 editor.addButton( 'wp_link_remove', { 584 584 tooltip: 'Remove', 585 icon: 'dashicon dashicons- no',585 icon: 'dashicon dashicons-trash', 586 586 cmd: 'wp_unlink' 587 587 } ); 588 588 -
wp-includes/js/tinymce/plugins/wpview/plugin.js
139 139 140 140 editor.addButton( 'wp_view_remove', { 141 141 tooltip: 'Remove', 142 icon: 'dashicon dashicons- no',142 icon: 'dashicon dashicons-trash', 143 143 onclick: function() { 144 144 editor.fire( 'cut' ); 145 145 }