aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/condition.reel/condition.js
diff options
context:
space:
mode:
authorEric Guzman2012-04-23 11:55:55 -0700
committerEric Guzman2012-04-23 11:55:55 -0700
commitcdd1189e349e2974681e2c451e861e5b0db570e4 (patch)
treed8823c3d050e011032c563d20c1a5f61e67ae740 /node_modules/montage/ui/condition.reel/condition.js
parentc0fce534c255ef1e25779e2f0e8de95bb4e160cf (diff)
parent5a0331fc26fcc2cdc6200086109e34440a2dec6a (diff)
downloadninja-cdd1189e349e2974681e2c451e861e5b0db570e4.tar.gz
Merge branch 'refs/heads/master' into CSSPanelUpdates
Diffstat (limited to 'node_modules/montage/ui/condition.reel/condition.js')
-rwxr-xr-xnode_modules/montage/ui/condition.reel/condition.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_modules/montage/ui/condition.reel/condition.js b/node_modules/montage/ui/condition.reel/condition.js
index 064f51b7..bcb0e957 100755
--- a/node_modules/montage/ui/condition.reel/condition.js
+++ b/node_modules/montage/ui/condition.reel/condition.js
@@ -148,7 +148,7 @@ exports.Condition = Montage.create(Component, /** @lends module:"montage/ui/cond
148 this.content = document.createElement("div"); 148 this.content = document.createElement("div");
149 childList = Array.prototype.slice.call(this._element.childNodes, 0); 149 childList = Array.prototype.slice.call(this._element.childNodes, 0);
150 for (i = 0; (childElement = childList[i]); i++) { 150 for (i = 0; (childElement = childList[i]); i++) {
151 childElement.parentElement.removeChild(childElement); 151 childElement.parentNode.removeChild(childElement);
152 this.content.appendChild(childElement); 152 this.content.appendChild(childElement);
153 } 153 }
154 } 154 }