From 5d7e470351fd150d5e70a97332fa2f2553797499 Mon Sep 17 00:00:00 2001 From: Armen Kesablyan Date: Mon, 7 May 2012 11:09:45 -0700 Subject: Initial Setup of the binding Tool Signed-off-by: Armen Kesablyan --- js/data/tools-data.js | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'js/data/tools-data.js') diff --git a/js/data/tools-data.js b/js/data/tools-data.js index 4d009530..12c6c965 100755 --- a/js/data/tools-data.js +++ b/js/data/tools-data.js @@ -222,6 +222,17 @@ exports.ToolsData = Montage.create(Montage, { "lastInGroup": true, "container": false, "selected": false + }, + { + "id": "bindingTool", + "properties": "bindingProperties", + "spriteSheet": true, + "action": "bindingTool", + "toolTip": "Binding (B)", + "cursor": "url('images/cursors/binding.png'),default", + "lastInGroup": true, + "container": false, + "selected": false } ] }, -- cgit v1.2.3 From d38aaadda934c6ec92df565c86fd5bc6316ae6b4 Mon Sep 17 00:00:00 2001 From: Armen Kesablyan Date: Wed, 23 May 2012 14:37:03 -0700 Subject: Binding tool subtool issues Signed-off-by: Armen Kesablyan --- js/data/tools-data.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'js/data/tools-data.js') diff --git a/js/data/tools-data.js b/js/data/tools-data.js index 0989f4f7..a6a03323 100755 --- a/js/data/tools-data.js +++ b/js/data/tools-data.js @@ -46,6 +46,9 @@ exports.ToolsData = Montage.create(Montage, { zoomToolIndex: { value: 12 }, + bindingToolIndex: { + value: 12 + }, // NOTE: additions or removal of any tools, or any changes in the order of these entries requires updating the constant index properties above. // Code in the keyboard mediator and ninja.js accesses the array below through the index constants above @@ -253,6 +256,7 @@ exports.ToolsData = Montage.create(Montage, { "cursor": "url('images/cursors/binding.png'),default", "lastInGroup": true, "container": false, + "subtools": [], "selected": false } ] -- cgit v1.2.3 From 4565558afff6fb07db3b5165042e028f467ac41b Mon Sep 17 00:00:00 2001 From: Armen Kesablyan Date: Thu, 21 Jun 2012 15:46:26 -0700 Subject: Binding View :Requested Changes for Pull Request Signed-off-by: Armen Kesablyan --- js/data/tools-data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js/data/tools-data.js') diff --git a/js/data/tools-data.js b/js/data/tools-data.js index fb195bd3..8ed6433e 100755 --- a/js/data/tools-data.js +++ b/js/data/tools-data.js @@ -47,7 +47,7 @@ exports.ToolsData = Montage.create(Montage, { value: 12 }, bindingToolIndex: { - value: 12 + value: 13 }, // NOTE: additions or removal of any tools, or any changes in the order of these entries requires updating the constant index properties above. -- cgit v1.2.3