aboutsummaryrefslogtreecommitdiff
path: root/js/lib/NJUtils.js
diff options
context:
space:
mode:
authorEric Guzman2012-05-29 15:29:11 -0700
committerEric Guzman2012-05-29 15:29:11 -0700
commit25ac55c285bb4850118c644dc57adaeda5b9a859 (patch)
treeb645941d7916716cbaf4860355df4101fc0f4c3c /js/lib/NJUtils.js
parent1fda3cea5f8dced1e14533969722e30b8ea1e6fa (diff)
parent58e454c828abf0b64fa62120359bcd78a0d34ac4 (diff)
downloadninja-25ac55c285bb4850118c644dc57adaeda5b9a859.tar.gz
Merge branch 'dom-architecture' of github.com:Motorola-Mobility/ninja-internal into CSSPanelUpdates
Diffstat (limited to 'js/lib/NJUtils.js')
-rwxr-xr-xjs/lib/NJUtils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/lib/NJUtils.js b/js/lib/NJUtils.js
index 90aebb84..7dd4c9e8 100755
--- a/js/lib/NJUtils.js
+++ b/js/lib/NJUtils.js
@@ -64,7 +64,7 @@ exports.NJUtils = Montage.create(Component, {
64 value: function(tag, attr, doc) { 64 value: function(tag, attr, doc) {
65 var _doc, el; 65 var _doc, el;
66 66
67 _doc = doc ? doc._document : document; 67 _doc = doc ? doc.model.views.design.document : document;
68 el = _doc.createElement(tag); 68 el = _doc.createElement(tag);
69 this.decor(el, attr); 69 this.decor(el, attr);
70 70