diff options
author | Valerio Virgillito | 2012-06-06 14:28:45 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-06-06 14:28:45 -0700 |
commit | 9b2aacd1ced60edb9cb604e9983f7c36fd409e0b (patch) | |
tree | eb90111539ab8ba8b4e6666ec7799906ca09198c /js/mediators | |
parent | 18e212dca48066d1ddaca96875a3f40adcc859b6 (diff) | |
parent | ea195af100d327aac68ada28387fe8259d0f31f4 (diff) | |
download | ninja-9b2aacd1ced60edb9cb604e9983f7c36fd409e0b.tar.gz |
Merge pull request #272 from pushkarjoshi/pentool
Pentool
Diffstat (limited to 'js/mediators')
-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 e2e8e937..4fd4bd4c 100755 --- a/js/mediators/keyboard-mediator.js +++ b/js/mediators/keyboard-mediator.js | |||
@@ -143,6 +143,13 @@ exports.KeyboardMediator = Montage.create(Component, { | |||
143 | return; | 143 | return; |
144 | } | 144 | } |
145 | 145 | ||
146 | // shortcut for Brush tool is B | ||
147 | if (evt.keyCode === Keyboard.B){ | ||
148 | evt.preventDefault(); | ||
149 | this.application.ninja.handleSelectTool({ "detail": this.application.ninja.toolsData.defaultToolsData[this.application.ninja.toolsData.brushToolIndex] }); | ||
150 | return; | ||
151 | } | ||
152 | |||
146 | // Shortcut for Rectangle Tool is R | 153 | // Shortcut for Rectangle Tool is R |
147 | // unless the user is pressing the command key. | 154 | // unless the user is pressing the command key. |
148 | // If the user is pressing the command key, they want to refresh the browser. | 155 | // If the user is pressing the command key, they want to refresh the browser. |