Changeset 31534 for trunk/src/wp-admin/tools.php
- Timestamp:
- 02/25/2015 01:49:26 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/tools.php
r27469 r31534 39 39 <div class="tool-box"> 40 40 <h3 class="title"><?php _e('Press This') ?></h3> 41 <p><?php _e('Press This is a bookmarklet: a little app that runs in your browser and lets you grab bits of the web.');?></p> 41 <div class="postbox press-this-install"> 42 <p><?php _e( 'Press This is a little app that lets you grab bits of the web and create new posts with ease.' );?></p> 43 <p><?php _e( 'Use Press This to clip text, images and videos from any web page. Then edit and add more straight from Press This before you save or publish it in a post on your site.' ); ?></p> 44 </div> 42 45 43 <p><?php _e('Use Press This to clip text, images and videos from any web page. Then edit and add more straight from Press This before you save or publish it in a post on your site.'); ?></p> 44 <p class="description"><?php _e('Drag-and-drop the following link to your bookmarks bar or right click it and add it to your favorites for a posting shortcut.') ?></p> 45 <p class="pressthis"><a onclick="return false;" oncontextmenu="if(window.navigator.userAgent.indexOf('WebKit')!=-1||window.navigator.userAgent.indexOf('MSIE')!=-1){jQuery('.pressthis-code').show().find('textarea').focus().select();return false;}" href="<?php echo htmlspecialchars( get_shortcut_link() ); ?>"><span><?php _e('Press This') ?></span></a></p> 46 <div class="pressthis-code" style="display:none;"> 47 <p class="description"><?php _e('If your bookmarks toolbar is hidden: copy the code below, open your Bookmarks manager, create new bookmark, type Press This into the name field and paste the code into the URL field.') ?></p> 48 <p><textarea rows="5" cols="120" readonly="readonly"><?php echo htmlspecialchars( get_shortcut_link() ); ?></textarea></p> 46 <form> 47 <div class="postbox press-this-install"> 48 <h3><?php _e( 'Install Press This' ); ?></h3> 49 <h4><?php _e( 'Bookmarklet' ); ?></h4> 50 <p><?php _e( 'Drag the bookmarklet below to your bookmarks bar. Then, when you\'re on a page you want to share, simply "press" it.' ); ?></p> 51 52 <p class="pressthis"> 53 <a class="" onclick="return false;" href="<?php echo htmlspecialchars( get_shortcut_link() ); ?>"><span><?php _e( 'Press This' ) ?></span></a> 54 <button type="button" class="button button-secondary js-show-pressthis-code-wrap" aria-expanded="false" aria-controls="pressthis-code-wrap"> 55 <span class="dashicons dashicons-clipboard"></span> 56 <span class="screen-reader-text"><?php _e( 'Copy Press This Bookmarklet' ) ?></span> 57 </button> 58 </p> 59 60 <div class="hidden js-pressthis-code-wrap"> 61 <p id="pressthis-code-desc"> 62 <?php _e( 'If you can\'t drag it to your bookmarks, copy the following code and create new bookmark. Paste the code into the new bookmark\'s URL field.' ) ?> 63 </p> 64 <p> 65 <textarea class="js-pressthis-code" rows="5" cols="120" readonly="readonly" aria-labelledby="pressthis-code-desc"><?php echo htmlspecialchars( get_shortcut_link() ); ?></textarea> 66 </p> 67 </div> 68 69 <h4><?php _e( 'Direct link (best for mobile)' ); ?></h4> 70 <p><?php _e( 'Follow the link to open Press This. Then add it to your device\'s bookmarks or home screen.' ); ?></p> 71 72 <p> 73 <a class="button button-secondary" href="<?php echo htmlspecialchars( admin_url( 'press-this.php' ) ); ?>"><?php _e( 'Open Press This' ) ?></a> 74 </p> 75 <script> 76 jQuery( document ).ready( function( $ ) { 77 var $showPressThisWrap = $( '.js-show-pressthis-code-wrap' ); 78 var $pressthisCode = $( '.js-pressthis-code' ); 79 80 $showPressThisWrap.on( 'click', function( event ) { 81 var $this = $( this ); 82 83 $this.parent().next( '.js-pressthis-code-wrap' ).slideToggle( 200 ); 84 $this.attr( 'aria-expanded', $this.attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' ); 85 }); 86 87 // Select Press This code when focusing (tabbing) or clicking the textarea. 88 $pressthisCode.on( 'click focus', function() { 89 var self = this; 90 setTimeout( function() { self.select(); }, 50 ); 91 }); 92 93 }); 94 </script> 49 95 </div> 96 </form> 50 97 </div> 51 98 <?php
Note: See TracChangeset
for help on using the changeset viewer.