Changeset 8700
- Timestamp:
- 08/21/2008 06:42:19 AM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-advanced.php
r8697 r8700 208 208 <ul id="category-tabs"> 209 209 <li class="ui-tabs-selected"><a href="#categories-all" tabindex="3"><?php _e( 'All Categories' ); ?></a></li> 210 <li class=" wp-no-js-hidden"><a href="#categories-pop" tabindex="3"><?php _e( 'Most Used' ); ?></a></li>210 <li class="hide-if-no-js"><a href="#categories-pop" tabindex="3"><?php _e( 'Most Used' ); ?></a></li> 211 211 </ul> 212 212 -
trunk/wp-admin/edit-link-form.php
r8697 r8700 72 72 <ul id="category-tabs"> 73 73 <li class="ui-tabs-selected"><a href="#categories-all"><?php _e( 'All Categories' ); ?></a></li> 74 <li class=" wp-no-js-hidden"><a href="#categories-pop"><?php _e( 'Most Used' ); ?></a></li>74 <li class="hide-if-no-js"><a href="#categories-pop"><?php _e( 'Most Used' ); ?></a></li> 75 75 </ul> 76 76 -
trunk/wp-admin/includes/widgets.php
r8600 r8700 263 263 <?php if ( $control ) : ?> 264 264 265 <a class="widget-action widget-control-save wp-no-js-hiddenedit alignleft" href="#save:<?php echo $id_format; ?>"><?php _e('Change'); ?></a>265 <a class="widget-action widget-control-save hide-if-no-js edit alignleft" href="#save:<?php echo $id_format; ?>"><?php _e('Change'); ?></a> 266 266 267 267 <?php endif; ?> -
trunk/wp-admin/js/common.js
r8691 r8700 3 3 jQuery('.fade').animate( { backgroundColor: '#ffffe0' }, 300).animate( { backgroundColor: '#fffbcc' }, 300).animate( { backgroundColor: '#ffffe0' }, 300).animate( { backgroundColor: '#fffbcc' }, 300); 4 4 5 // Reveal6 jQuery('.wp-no-js-hidden').removeClass( 'wp-no-js-hidden' );7 8 5 // show things that should be visible, hide what should be hidden 9 jQuery('.hide-if-no-js'). show();6 jQuery('.hide-if-no-js').removeClass('hide-if-no-js'); 10 7 jQuery('.hide-if-js').hide(); 11 8 -
trunk/wp-admin/wp-admin.css
r8697 r8700 1570 1570 /* Global classes */ 1571 1571 .wp-hidden-children .wp-hidden-child { display: none; } 1572 .wp-no-js-hidden { display: none; }1573 1572 .ui-tabs-hide { display: none; } 1574 1573
Note: See TracChangeset
for help on using the changeset viewer.