Changeset 35627
- Timestamp:
- 11/12/2015 12:03:51 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/editor-expand.js
r32337 r35627 1185 1185 1186 1186 // Make sure the body focuses when clicking outside it. 1187 editor.on( 'click', function( event ) 1187 editor.on( 'click', function( event ) { 1188 1188 if ( event.target === editor.getDoc().documentElement ) { 1189 1189 editor.focus(); -
trunk/src/wp-admin/js/revisions.js
r31471 r35627 25 25 * 26 26 * A debugging utility for revisions. Works only when a 27 * debug 27 * debug flag is on and the browser supports it. 28 28 */ 29 29 revisions.log = function() { -
trunk/src/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js
r35607 r35627 38 38 icon: 'dashicon dashicons-align-' + direction, 39 39 cmd: 'alignnone' === name ? 'wpAlignNone' : 'Justify' + direction.slice( 0, 1 ).toUpperCase() + direction.slice( 1 ), 40 onPostRender: function() 40 onPostRender: function() { 41 41 var self = this; 42 42
Note: See TracChangeset
for help on using the changeset viewer.