Changeset 28024
- Timestamp:
- 04/07/2014 10:54:13 PM (11 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r27978 r28024 734 734 wp_enqueue_script('media-upload'); 735 735 } 736 737 /** 738 * Fires when scripts and styles are enqueued for the editor 739 * 740 * @since 3.9.0 741 * 742 * @param array An array containing boolean values whether TinyMCE and Quicktags are being loaded. 743 */ 744 do_action( 'wp_enqueue_editor', array( 'tinymce' => self::$has_tinymce, 'quicktags' => self::$has_quicktags ) ); 736 745 } 737 746 -
trunk/src/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js
r28012 r28024 31 31 32 32 if ( typeof jQuery === 'undefined' || ! jQuery.wp || ! jQuery.wp.wpdialog ) { 33 // wpdialo d.js is not loaded33 // wpdialog.js is not loaded 34 34 if ( window.console && window.console.error ) { 35 window.console.error( 'wpdialog.js is not loaded. Please set it as dependency for your script when calling wp_enqueue_script().');35 window.console.error("wpdialog.js is not loaded. Please set 'wpdialogs' as dependency for your script when calling wp_enqueue_script(). You may also want to enqueue the 'wp-jquery-ui-dialog' stylesheet."); 36 36 } 37 37
Note: See TracChangeset
for help on using the changeset viewer.