aboutsummaryrefslogtreecommitdiff
path: root/js/lib/NJUtils.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/lib/NJUtils.js')
-rwxr-xr-xjs/lib/NJUtils.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/js/lib/NJUtils.js b/js/lib/NJUtils.js
index d0f547f5..90aebb84 100755
--- a/js/lib/NJUtils.js
+++ b/js/lib/NJUtils.js
@@ -19,16 +19,17 @@ exports.NJUtils = Montage.create(Component, {
19 ///// Quick "getElementById" 19 ///// Quick "getElementById"
20 $ : { 20 $ : {
21 value: function(id, doc) { 21 value: function(id, doc) {
22 var _doc = doc || document; 22 doc = doc || document;
23 return _doc.getElementById(id); 23 return doc.getElementById(id);
24 } 24 }
25 }, 25 },
26 26
27 ///// Quick "getElementsByClassName" which also returns as an Array 27 ///// Quick "getElementsByClassName" which also returns as an Array
28 ///// Can return as NodeList by passing true as second argument 28 ///// Can return as NodeList by passing true as second argument
29 $$ : { 29 $$ : {
30 value: function(className, asNodeList) { 30 value: function(className, asNodeList, doc) {
31 var list = document.getElementsByClassName(className); 31 doc = doc || document;
32 var list = doc.getElementsByClassName(className);
32 return (asNodeList) ? list : this.toArray(list); 33 return (asNodeList) ? list : this.toArray(list);
33 } 34 }
34 }, 35 },