Changeset 13131
- Timestamp:
- 02/14/2010 02:14:59 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugin-editor.php
r12848 r13131 19 19 20 20 wp_admin_css( 'theme-editor' ); 21 wp_enqueue_script( 'tabby' ); 21 22 22 23 $plugins = get_plugins(); … … 230 231 jQuery(document).ready(function($){ 231 232 $('#template').submit(function(){ $('#scrollto').val( $('#newcontent').scrollTop() ); }); 232 $('#newcontent').scrollTop( $('#scrollto').val() ) ;233 $('#newcontent').scrollTop( $('#scrollto').val() ).tabby(); 233 234 }); 234 235 /* ]]> */ -
trunk/wp-admin/theme-editor.php
r12752 r13131 19 19 20 20 wp_admin_css( 'theme-editor' ); 21 wp_enqueue_script( 'tabby' ); 21 22 22 23 $themes = get_themes(); … … 233 234 jQuery(document).ready(function($){ 234 235 $('#template').submit(function(){ $('#scrollto').val( $('#newcontent').scrollTop() ); }); 235 $('#newcontent').scrollTop( $('#scrollto').val() ) ;236 $('#newcontent').scrollTop( $('#scrollto').val() ).tabby(); 236 237 }); 237 238 /* ]]> */ -
trunk/wp-includes/script-loader.php
r13092 r13131 156 156 $scripts->add( 'suggest', "/wp-includes/js/jquery/suggest$suffix.js", array('jquery'), '1.1-20090125'); 157 157 $scripts->add_data( 'suggest', 'group', 1 ); 158 159 $scripts->add( 'tabby', "/wp-includes/js/jquery/tabby$suffix.js", array('jquery'), '0.12'); 160 $scripts->add_data( 'tabby', 'group', 1 ); 158 161 159 162 $scripts->add( 'schedule', '/wp-includes/js/jquery/jquery.schedule.js', array('jquery'), '20m');
Note: See TracChangeset
for help on using the changeset viewer.