aboutsummaryrefslogtreecommitdiff
path: root/js/tools/TextTool.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-04-04 11:11:58 -0700
committerValerio Virgillito2012-04-04 11:11:58 -0700
commita11ef2eed7049835c8bdfa50a2b893632c46eaa0 (patch)
treefcbb067044d339daa49622537e934bf3a309db96 /js/tools/TextTool.js
parentc6de22bf42be90b403491b5f87b1818d9020310c (diff)
downloadninja-a11ef2eed7049835c8bdfa50a2b893632c46eaa0.tar.gz
Squashed commit of Preparing for the montage undo-manager: Architecture changes
Reworked the add and remove elements into 1 function which can take 1 or more elements. Removed the _element from the selection array Many other changes related to those 2 changes Undo/Redo shortcuts are now using montage undo/redo manager. Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/tools/TextTool.js')
-rwxr-xr-xjs/tools/TextTool.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tools/TextTool.js b/js/tools/TextTool.js
index d27a32bb..a58aacc6 100755
--- a/js/tools/TextTool.js
+++ b/js/tools/TextTool.js
@@ -95,7 +95,7 @@ exports.TextTool = Montage.create(DrawingTool, {
95 } else { 95 } else {
96 this.doSelection(event); 96 this.doSelection(event);
97 if (this.application.ninja.selectedElements.length !== 0 ) { 97 if (this.application.ninja.selectedElements.length !== 0 ) {
98 this.selectedElement = this.application.ninja.selectedElements[0]._element; 98 this.selectedElement = this.application.ninja.selectedElements[0];
99 } 99 }
100 this._isDrawing = false; 100 this._isDrawing = false;
101 } 101 }
@@ -144,7 +144,7 @@ exports.TextTool = Montage.create(DrawingTool, {
144 144
145 HandleDoubleClick: { 145 HandleDoubleClick: {
146 value: function(e) { 146 value: function(e) {
147 //this.application.ninja.selectedElements[0]._element.setAttribute("contenteditable", true); 147 //this.application.ninja.selectedElements[0].setAttribute("contenteditable", true);
148 148
149 //if (!this.application.ninja.textTool) { 149 //if (!this.application.ninja.textTool) {
150 150