Plugin Directory

Changeset 588492


Ignore:
Timestamp:
08/21/2012 06:24:03 PM (14 years ago)
Author:
srcoley
Message:

Adds title attributes to the Teleport buttons.

Location:
teleport/tags
Files:
2 edited
13 copied

Legend:

Unmodified
Added
Removed
  • teleport/tags/1.2.1/readme.txt

    r588182 r588492  
    44Requires at least: 2.0.2
    55Tested up to: 3.4.1
    6 Stable tag: 1.2.1
    7 Version: 1.2.1
     6Stable tag: 1.2.2
     7Version: 1.2.2
    88License: GPLv2
    99
     
    8989* Fixes major bug that outputs error messages
    9090
     91= 1.2.2 =
     92
     93* Added title attributes to the Teleport buttons
     94
    9195
    9296== Upgrade Notice ==
     
    108112= 1.2.1 =
    109113Urgent update! If you're running 1.2, please update now. This update fixes a bug that outputs unexpected errors.
     114
     115= 1.2.2 =
     116This update adds title tags to the Teleport buttons. If you forget which button does what, you can now hover over the button to see it's function.
  • teleport/tags/1.2.1/teleport.php

    r588182 r588492  
    44    Plugin URI: http://wordpress.org/extend/plugins/teleport/
    55    Description: Teleport is all about getting around WordPress quickly! It uses keyboard shortcuts to get you to the most important places with just two taps. The intuitive teleporter is arranged exactly like the keyboard shortcuts - the e, d, s, a, and q keys make a 'u' shape around the w key. This matches the layout the teleporter. <strong>To get started:</strong> 1) Activate the plugin. 2) Go to your homepage. 3) Once the page has finished loading, press "w". This will activate the teleporter. To learn more about the teleporter, read the plugin documentation.
    6     Version: 1.2.1
     6    Version: 1.2.2
    77    Author: Stephen Coley
    88    Author URI: http://dknewmedia.com
     
    105105    </div>
    106106    <div id="teleport_first" class="teleport_button">
    107         <div id="teleport_icon_first" class="teleport_icon" data-url="' . teleport_url(get_bloginfo('wpurl') . '/wp-admin/options-general.php') . '"></div>
     107        <div id="teleport_icon_first" class="teleport_icon" data-url="' . teleport_url(get_bloginfo('wpurl') . '/wp-admin/options-general.php') . '" title="Settings"></div>
    108108    </div>
    109109    <div id="teleport_second" class="teleport_button">
    110     <div id="teleport_icon_second" class="teleport_icon" data-url="' . teleport_url(get_bloginfo('wpurl') . '/wp-admin/index.php') . '"></div>
     110    <div id="teleport_icon_second" class="teleport_icon" data-url="' . teleport_url(get_bloginfo('wpurl') . '/wp-admin/index.php') . '" title="Dashboard"></div>
    111111    </div>
    112112    <div id="teleport_third" class="teleport_button">
    113         <div id="teleport_icon_third" class="teleport_icon" data-url="' . teleport_url($edit) . '"></div>
     113        <div id="teleport_icon_third" class="teleport_icon" data-url="' . teleport_url($edit) . '" title="Edit"></div>
    114114    </div>
    115115    <div id="teleport_fourth" class="teleport_button">
    116         <div id="teleport_icon_fourth" class="teleport_icon" data-url="' . $logger . '"></div>
     116        <div id="teleport_icon_fourth" class="teleport_icon" data-url="' . $logger . '" title="Log in/out"></div>
    117117    </div>
    118118    <div id="teleport_fifth" class="teleport_button">
    119         <div id="teleport_icon_fifth" class="teleport_icon" data-url="' . teleport_url($archive) . '"></div>
     119        <div id="teleport_icon_fifth" class="teleport_icon" data-url="' . teleport_url($archive) . '" title="Archive"></div>
    120120    </div>
    121121</div>';
Note: See TracChangeset for help on using the changeset viewer.