aboutsummaryrefslogtreecommitdiff
path: root/js/data/tools-data.js
diff options
context:
space:
mode:
authorKruti Shah2012-06-27 09:25:42 -0700
committerKruti Shah2012-06-27 09:25:42 -0700
commitd6bffa2450f68bdf9bfff0f4e155778f59f3624a (patch)
treec37300f67a3fb502d7f4e277600944739d48fd82 /js/data/tools-data.js
parentb52747edbeba7d210fca98acccb2d2df52134bca (diff)
parent46174eb0ce93d660c8d2e9276fbdc4f9a03f056a (diff)
downloadninja-d6bffa2450f68bdf9bfff0f4e155778f59f3624a.tar.gz
Merge branch 'refs/heads/ninjainternalmaster' into Timeline-local-kruti
Diffstat (limited to 'js/data/tools-data.js')
-rwxr-xr-xjs/data/tools-data.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/data/tools-data.js b/js/data/tools-data.js
index 138f9f4d..8ed6433e 100755
--- a/js/data/tools-data.js
+++ b/js/data/tools-data.js
@@ -46,6 +46,9 @@ exports.ToolsData = Montage.create(Montage, {
46 zoomToolIndex: { 46 zoomToolIndex: {
47 value: 12 47 value: 12
48 }, 48 },
49 bindingToolIndex: {
50 value: 13
51 },
49 52
50 // NOTE: additions or removal of any tools, or any changes in the order of these entries requires updating the constant index properties above. 53 // NOTE: additions or removal of any tools, or any changes in the order of these entries requires updating the constant index properties above.
51 // Code in the keyboard mediator and ninja.js accesses the array below through the index constants above 54 // Code in the keyboard mediator and ninja.js accesses the array below through the index constants above
@@ -243,6 +246,18 @@ exports.ToolsData = Montage.create(Montage, {
243 "container": false, 246 "container": false,
244 "subtools": [], 247 "subtools": [],
245 "selected": false 248 "selected": false
249 },
250 {
251 "id": "bindingTool",
252 "properties": "bindingProperties",
253 "spriteSheet": true,
254 "action": "bindingTool",
255 "toolTip": "Binding (B)",
256 "cursor": "url('images/cursors/binding.png'),default",
257 "lastInGroup": true,
258 "container": false,
259 "subtools": [],
260 "selected": false
246 } 261 }
247 ] 262 ]
248 }, 263 },