diff options
author | Armen Kesablyan | 2012-06-19 01:03:59 -0700 |
---|---|---|
committer | Armen Kesablyan | 2012-06-19 01:03:59 -0700 |
commit | 2e13a73e4ee980a6f73f6ff48b2a195eb209a7db (patch) | |
tree | d352f5e769eae0e1b7b76ccbeafa9b174b1a9918 /js/mediators | |
parent | 244e608645778746d1a3b5aa0d4c0868f7c5c272 (diff) | |
parent | c59eb371559a3061ce53223e249ca97daace5968 (diff) | |
download | ninja-2e13a73e4ee980a6f73f6ff48b2a195eb209a7db.tar.gz |
Merge branch 'refs/heads/master' into binding
Conflicts:
js/components/layout/tools-list.reel/tools-list.html
js/components/layout/tools-properties.reel/tools-properties.html
js/document/document-html.js
js/document/templates/app/main.js
js/panels/Panel.reel/Panel.js
node_modules/montage/ui/native-control.js
Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'js/mediators')
-rwxr-xr-x | js/mediators/element-mediator.js | 1 | ||||
-rwxr-xr-x | js/mediators/keyboard-mediator.js | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/js/mediators/element-mediator.js b/js/mediators/element-mediator.js index 40e94cca..611cf214 100755 --- a/js/mediators/element-mediator.js +++ b/js/mediators/element-mediator.js | |||
@@ -84,6 +84,7 @@ exports.ElementMediator = Montage.create(Component, { | |||
84 | value: function(newChild, oldChild, notify) { | 84 | value: function(newChild, oldChild, notify) { |
85 | 85 | ||
86 | this.application.ninja.currentDocument.model.documentRoot.replaceChild(newChild, oldChild); | 86 | this.application.ninja.currentDocument.model.documentRoot.replaceChild(newChild, oldChild); |
87 | if (newChild.getAttribute) newChild.setAttribute('data-ninja-node', 'true'); | ||
87 | 88 | ||
88 | var undoLabel = "replace element"; | 89 | var undoLabel = "replace element"; |
89 | 90 | ||
diff --git a/js/mediators/keyboard-mediator.js b/js/mediators/keyboard-mediator.js index 4fd4bd4c..196c8a4b 100755 --- a/js/mediators/keyboard-mediator.js +++ b/js/mediators/keyboard-mediator.js | |||
@@ -56,6 +56,11 @@ var Keyboard = exports.Keyboard = { | |||
56 | 56 | ||
57 | exports.KeyboardMediator = Montage.create(Component, { | 57 | exports.KeyboardMediator = Montage.create(Component, { |
58 | 58 | ||
59 | appModel: { | ||
60 | value: null, | ||
61 | serializable: true | ||
62 | }, | ||
63 | |||
59 | deserializedFromTemplate: { | 64 | deserializedFromTemplate: { |
60 | value: function() { | 65 | value: function() { |
61 | this.eventManager.addEventListener("appLoaded", this, false); | 66 | this.eventManager.addEventListener("appLoaded", this, false); |