Changeset 28045
- Timestamp:
- 04/08/2014 08:28:57 AM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/theme.js
r28038 r28045 23 23 // Map `id` to `slug` for shared code 24 24 initialize: function() { 25 var install , installed;25 var install; 26 26 27 27 // Install url for the theme … … 1205 1205 1206 1206 // Handles search route event 1207 themes.router.on( 'route:search', function( query) {1207 themes.router.on( 'route:search', function() { 1208 1208 $( '.theme-search' ).trigger( 'keyup' ); 1209 1209 }); … … 1549 1549 search: function( query ) { 1550 1550 $( '.theme-search' ).val( query ); 1551 } ,1551 } 1552 1552 }); 1553 1553 … … 1605 1605 1606 1606 // Handles search route event 1607 themes.router.on( 'route:search', function( query) {1607 themes.router.on( 'route:search', function() { 1608 1608 $( '.theme-search' ).focus().trigger( 'keyup' ); 1609 1609 }); -
trunk/src/wp-includes/css/editor.css
r28043 r28045 1520 1520 z-index: 100020; 1521 1521 background: #fff; 1522 transition-property: height;1523 transition -duration:0.2s;1522 -webkit-transition: height 0.2s; 1523 transition: height 0.2s; 1524 1524 } 1525 1525 -
trunk/src/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js
r28024 r28045 33 33 // wpdialog.js is not loaded 34 34 if ( window.console && window.console.error ) { 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.");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.