webutil.js, util.js: split cleanup.

This commit is contained in:
Joel Martin 2010-09-29 15:05:27 -05:00
parent 5a00c9d18a
commit a59f1cd269
2 changed files with 4 additions and 20 deletions

View File

@ -11,25 +11,9 @@
/*global window, console, document, navigator, ActiveXObject */
// Globals defined here
var Util = {}, $;
var Util = {};
/*
* Simple DOM selector by ID
*/
if (!window.$) {
$ = function (id) {
if (document.getElementById) {
return document.getElementById(id);
} else if (document.all) {
return document.all[id];
} else if (document.layers) {
return document.layers[id];
}
return undefined;
};
}
/*
* Make arrays quack
*/

View File

@ -8,7 +8,7 @@
"use strict";
/*jslint bitwise: false, white: false */
/*global window, console, document, navigator, ActiveXObject*/
/*global window, document */
// Globals defined here
var WebUtil = {}, $;