Changeset 14930
- Timestamp:
- 05/26/2010 03:57:55 AM (14 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/media.php
r14897 r14930 1490 1490 </script> 1491 1491 1492 <div id="flash-upload-ui" >1492 <div id="flash-upload-ui" class="hide-if-no-js"> 1493 1493 <?php do_action('pre-flash-upload-ui'); ?> 1494 1494 … … 2232 2232 */ 2233 2233 function media_upload_html_bypass($flash = true) { 2234 echo '<p class="upload-html-bypass ">';2234 echo '<p class="upload-html-bypass hide-if-no-js">'; 2235 2235 _e('You are using the Browser uploader.'); 2236 2236 if ( $flash ) { -
trunk/wp-admin/media-upload.php
r14908 r14930 89 89 <input type="hidden" name="post_id" id="post_id" value="0" /> 90 90 <?php wp_nonce_field('media-form'); ?> 91 <div id="media-items" > </div>91 <div id="media-items" class="hide-if-no-js"> </div> 92 92 <p> 93 <input type="submit" class="button savebutton " name="save" value="<?php esc_attr_e( 'Save all changes' ); ?>" />93 <input type="submit" class="button savebutton hide-if-no-js" name="save" value="<?php esc_attr_e( 'Save all changes' ); ?>" /> 94 94 </p> 95 95 </form> -
trunk/wp-admin/plugin-editor.php
r14718 r14930 212 212 </div> 213 213 <?php if ( !empty( $docs_select ) ) : ?> 214 <div id="documentation" ><label for="docs-list"><?php _e('Documentation:') ?></label> <?php echo $docs_select ?> <input type="button" class="button" value="<?php esc_attr_e( 'Lookup' ) ?> " onclick="if ( '' != jQuery('#docs-list').val() ) { window.open( 'http://api.wordpress.org/core/handbook/1.0/?function=' + escape( jQuery( '#docs-list' ).val() ) + '&locale=<?php echo urlencode( get_locale() ) ?>&version=<?php echo urlencode( $wp_version ) ?>&redirect=true'); }" /></div>214 <div id="documentation" class="hide-if-no-js"><label for="docs-list"><?php _e('Documentation:') ?></label> <?php echo $docs_select ?> <input type="button" class="button" value="<?php esc_attr_e( 'Lookup' ) ?> " onclick="if ( '' != jQuery('#docs-list').val() ) { window.open( 'http://api.wordpress.org/core/handbook/1.0/?function=' + escape( jQuery( '#docs-list' ).val() ) + '&locale=<?php echo urlencode( get_locale() ) ?>&version=<?php echo urlencode( $wp_version ) ?>&redirect=true'); }" /></div> 215 215 <?php endif; ?> 216 216 <?php if ( is_writeable($real_file) ) : ?> -
trunk/wp-admin/theme-editor.php
r14718 r14930 202 202 </div> 203 203 <?php if ( isset($functions ) && count($functions) ) { ?> 204 <div id="documentation" >204 <div id="documentation" class="hide-if-no-js"> 205 205 <label for="docs-list"><?php _e('Documentation:') ?></label> 206 206 <?php echo $docs_select; ?> 207 <input type="button" class="button" value=" <?php esc_attr_e( 'Lookup' ); ?> " onclick="if ( '' != jQuery('#docs-list').val() ) { window.open( 'http://api.wordpress.org/core/handbook/1.0/?function=' + escape( jQuery( '#docs-list' ).val() ) + '& locale=<?php echo urlencode( get_locale() ) ?>&version=<?php echo urlencode( $wp_version ) ?>&redirect=true'); }" />207 <input type="button" class="button" value=" <?php esc_attr_e( 'Lookup' ); ?> " onclick="if ( '' != jQuery('#docs-list').val() ) { window.open( 'http://api.wordpress.org/core/handbook/1.0/?function=' + escape( jQuery( '#docs-list' ).val() ) + '&locale=<?php echo urlencode( get_locale() ) ?>&version=<?php echo urlencode( $wp_version ) ?>&redirect=true'); }" /> 208 208 </div> 209 209 <?php } ?>
Note: See TracChangeset
for help on using the changeset viewer.