diff options
author | Joey Hess <joey@kitenet.net> | 2008-03-21 18:14:06 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2008-03-21 18:14:06 -0400 |
commit | e8ff29fa330aef5e8d30eeef44218b87c4a9d97e (patch) | |
tree | e8cae0d621648bc078356c319dbc3225e90374f1 | |
parent | 060183df6797c22edad0bef0d75ee9043b211bf8 (diff) | |
download | ikiwiki-e8ff29fa330aef5e8d30eeef44218b87c4a9d97e.tar ikiwiki-e8ff29fa330aef5e8d30eeef44218b87c4a9d97e.tar.gz |
web commit by http://jblevins.org/: Ideas about keyboard shortcuts
-rw-r--r-- | doc/todo/access_keys.mdwn | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/todo/access_keys.mdwn b/doc/todo/access_keys.mdwn new file mode 100644 index 000000000..d3a09578c --- /dev/null +++ b/doc/todo/access_keys.mdwn @@ -0,0 +1,26 @@ +Access keys (i.e., keyboard shortcuts) can be defined for common +features. Something like the following: + +* 1 - Homepage +* 2 - Search box +* E - Edit +* R - RecentChanges +* H - History +* P - Preferences +* D - Discussion +* S - Save the current page (when editing) +* C - Cancel the current edit +* V - Preview the current page + +Then, for example, in Firefox one could press Alt+Shift+E to edit the +page. + +For links, this is implemented as: + + <a href="recentchanges/" accesskey="r">RecentChanges</a> + +and for forms buttons: + + <input type="submit" value="Submit" accesskey="s"/> + +--[[JasonBlevins]], March 21, 2008 18:05 EDT |