aboutsummaryrefslogtreecommitdiff
path: root/js/lib
diff options
context:
space:
mode:
authorEric Guzman2012-05-25 16:37:43 -0700
committerEric Guzman2012-05-25 16:37:43 -0700
commite884d2769a53dd8920b485672631b50158ed0800 (patch)
tree526934085f973f0bcfef5a3f130794530396aa03 /js/lib
parent1f7c17d688c3340b31d2e1c2b7205b10bd806968 (diff)
parent81239571c538f72e398fafa5b07725bf1bbb2d5d (diff)
downloadninja-e884d2769a53dd8920b485672631b50158ed0800.tar.gz
Merge branch 'binding' of github.com:dhg637/ninja-internal into binding
Diffstat (limited to 'js/lib')
-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