38 lines
846 B
JavaScript
38 lines
846 B
JavaScript
define(['$.utils', '$.proto'], function (utils, proto) {
|
|
|
|
// Create a custom edition of Array, extended with $.proto
|
|
var ElementArray = function () {};
|
|
ElementArray.prototype = new Array;
|
|
ElementArray.constructor = Array;
|
|
for(var key in proto) ElementArray.prototype[key] = proto[key];
|
|
|
|
// Create to actual dollar function
|
|
function Dollar (selector) {
|
|
|
|
var match,
|
|
matches = new ElementArray();
|
|
|
|
if (selector !== undefined) {
|
|
if (selector === document) {
|
|
matches.push(document);
|
|
} else if (selector === window) {
|
|
matches.push(window);
|
|
} else {
|
|
if ((match = document.querySelectorAll(selector))) {
|
|
for( var i=0; i < match.length; i++) {
|
|
matches.push(match[i]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return matches;
|
|
|
|
}
|
|
|
|
// Add utils to Dollar
|
|
for(var key in utils) Dollar[key] = utils[key];
|
|
|
|
return Dollar;
|
|
|
|
}); |