aboutsummaryrefslogtreecommitdiff
path: root/js/components/hintable.reel/hintable.js
diff options
context:
space:
mode:
authorJonathan Duran2012-04-06 08:46:42 -0700
committerJonathan Duran2012-04-06 08:46:42 -0700
commit852f49888e54b4a2a8ee929dbeb0c54dfa004de6 (patch)
treed90b53a70e0c14992db62fc0705b830f75cec52e /js/components/hintable.reel/hintable.js
parent921a106cc1159b93068a4c635fcc0c74084446a5 (diff)
parenteb694fa5d39733264bce7ba832aabbe9c3d6c81e (diff)
downloadninja-852f49888e54b4a2a8ee929dbeb0c54dfa004de6.tar.gz
Merge branch 'refs/heads/timeline-local' into TimelineUber
Diffstat (limited to 'js/components/hintable.reel/hintable.js')
-rw-r--r--js/components/hintable.reel/hintable.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/js/components/hintable.reel/hintable.js b/js/components/hintable.reel/hintable.js
index cbfe2d9b..6e3b2aaf 100644
--- a/js/components/hintable.reel/hintable.js
+++ b/js/components/hintable.reel/hintable.js
@@ -157,6 +157,14 @@ exports.Hintable = Montage.create(Editable, {
157 157
158 this._super(arguments); 158 this._super(arguments);
159 159
160 /// Remove the phantom "<BR>" element that is generated when
161 /// content editable element is empty
162 this._children(this._element, function(item) {
163 return item.nodeName === 'BR';
164 }).forEach(function(item) {
165 this._element.removeChild(item);
166 }, this);
167
160 if(k === 39) { 168 if(k === 39) {
161 selection = window.getSelection(); 169 selection = window.getSelection();
162 text = selection.baseNode.textContent; 170 text = selection.baseNode.textContent;