diff options
author | Pushkar Joshi | 2012-05-22 13:24:23 -0700 |
---|---|---|
committer | Pushkar Joshi | 2012-05-22 13:24:23 -0700 |
commit | eea0a556e44c2b60d3aaf6e46d2432d3e6303812 (patch) | |
tree | 629352d8c01214a0fa1a08be1f4a4961aa64aa32 /js/mediators/keyboard-mediator.js | |
parent | 01dbc1f329a95bc7e3b93224543d88ad5bdbd315 (diff) | |
parent | f4df8204a57e1bc6021b651ebb2259f9931cf26f (diff) | |
download | ninja-eea0a556e44c2b60d3aaf6e46d2432d3e6303812.tar.gz |
Merge branch 'pentool' into brushtool
Diffstat (limited to 'js/mediators/keyboard-mediator.js')
-rwxr-xr-x | js/mediators/keyboard-mediator.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/js/mediators/keyboard-mediator.js b/js/mediators/keyboard-mediator.js index 029c0916..5d5537d5 100755 --- a/js/mediators/keyboard-mediator.js +++ b/js/mediators/keyboard-mediator.js | |||
@@ -142,6 +142,13 @@ exports.KeyboardMediator = Montage.create(Component, { | |||
142 | return; | 142 | return; |
143 | } | 143 | } |
144 | 144 | ||
145 | // shortcut for Brush tool is B | ||
146 | if (evt.keyCode === Keyboard.B){ | ||
147 | evt.preventDefault(); | ||
148 | this.application.ninja.handleSelectTool({ "detail": this.application.ninja.toolsData.defaultToolsData[this.application.ninja.toolsData.brushToolIndex] }); | ||
149 | return; | ||
150 | } | ||
151 | |||
145 | // Shortcut for Rectangle Tool is R | 152 | // Shortcut for Rectangle Tool is R |
146 | // unless the user is pressing the command key. | 153 | // unless the user is pressing the command key. |
147 | // If the user is pressing the command key, they want to refresh the browser. | 154 | // If the user is pressing the command key, they want to refresh the browser. |