summaryrefslogtreecommitdiffstats
path: root/public/javascripts/jstoolbar/textile.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/javascripts/jstoolbar/textile.js')
-rw-r--r--public/javascripts/jstoolbar/textile.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/public/javascripts/jstoolbar/textile.js b/public/javascripts/jstoolbar/textile.js
index 9adc77add..76d2170cc 100644
--- a/public/javascripts/jstoolbar/textile.js
+++ b/public/javascripts/jstoolbar/textile.js
@@ -26,6 +26,7 @@
jsToolBar.prototype.elements.strong = {
type: 'button',
title: 'Strong',
+ shortcut: 'b',
fn: {
wiki: function() { this.singleTag('*') }
}
@@ -35,6 +36,7 @@ jsToolBar.prototype.elements.strong = {
jsToolBar.prototype.elements.em = {
type: 'button',
title: 'Italic',
+ shortcut: 'i',
fn: {
wiki: function() { this.singleTag("_") }
}
@@ -44,6 +46,7 @@ jsToolBar.prototype.elements.em = {
jsToolBar.prototype.elements.ins = {
type: 'button',
title: 'Underline',
+ shortcut: 'u',
fn: {
wiki: function() { this.singleTag('+') }
}