aboutsummaryrefslogtreecommitdiff
path: root/js/components/hintable.reel
diff options
context:
space:
mode:
authorJon Reid2012-05-24 16:13:00 -0700
committerJon Reid2012-05-24 16:13:00 -0700
commit1f00ec0f35c798556ae1f8b6e0e9eb57f43b5df0 (patch)
tree190a450a8a03ae3cd06c237b28162a1812c696ca /js/components/hintable.reel
parentfadf2a5f05c9b3e19caa2f18fc6d4d0e1e4fb02f (diff)
downloadninja-1f00ec0f35c798556ae1f8b6e0e9eb57f43b5df0.tar.gz
Timeline: Bug fix: Layer name gets doubled (spreadsheet)
Diffstat (limited to 'js/components/hintable.reel')
-rw-r--r--js/components/hintable.reel/hintable.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/components/hintable.reel/hintable.js b/js/components/hintable.reel/hintable.js
index 6e3b2aaf..79549191 100644
--- a/js/components/hintable.reel/hintable.js
+++ b/js/components/hintable.reel/hintable.js
@@ -146,7 +146,8 @@ exports.Hintable = Montage.create(Editable, {
146 }, 146 },
147 set: function(str) { 147 set: function(str) {
148 var node = this._getFirstTextNode(); 148 var node = this._getFirstTextNode();
149 node.textContent = str; 149 //node.textContent = str;
150 node.innerText = str;
150 } 151 }
151 }, 152 },
152 153