aboutsummaryrefslogtreecommitdiff
path: root/js/models/element-model.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-07-22 23:16:59 -0700
committerValerio Virgillito2012-07-22 23:16:59 -0700
commitbcb5aa3d1c5024e968c266be18128d8ea0988757 (patch)
tree01fbcd75a6adf579b4f89fb26e1b5e768a09ebaf /js/models/element-model.js
parentd0526d124f2bbc1c28912d2d3de925d175f5e2d5 (diff)
parentb59bb17d10a0f5c9c2e5ce0eb1e0e1c7da6c92f6 (diff)
downloadninja-bcb5aa3d1c5024e968c266be18128d8ea0988757.tar.gz
Merge branch 'template-pi-breadcrumb' of https://github.com/mencio/ninja into v0.7.1
Diffstat (limited to 'js/models/element-model.js')
-rwxr-xr-xjs/models/element-model.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/models/element-model.js b/js/models/element-model.js
index 07abbd40..7d8e6ebb 100755
--- a/js/models/element-model.js
+++ b/js/models/element-model.js
@@ -53,7 +53,7 @@ var modelGenerator = exports.modelGenerator = function() {
53 }) 53 })
54 }); 54 });
55 55
56 if(this._model.selection !== "body") { 56 if(this._model.selection !== "body" && this.nodeName.toLowerCase() !== "ninja-content") {
57 this._model.props3D.init(this, false); 57 this._model.props3D.init(this, false);
58 } 58 }
59 59
@@ -75,9 +75,9 @@ var getInfoForElement = function(el) {
75 } 75 }
76 76
77 if(el.nodeName.toLowerCase() === "ninja-content") { 77 if(el.nodeName.toLowerCase() === "ninja-content") {
78 elementName = "body"; 78 elementName = "div";
79 controller = elementNameToController(elementName); 79 controller = elementNameToController("body");
80 pi = elementNameToPi(elementName); 80 pi = elementNameToPi("body");
81 } 81 }
82 82
83 // TODO: Add this in case there is no controller for the component 83 // TODO: Add this in case there is no controller for the component