Commit a59f1cd2 authored by Joel Martin's avatar Joel Martin

webutil.js, util.js: split cleanup.

parent 5a00c9d1
...@@ -8,28 +8,12 @@ ...@@ -8,28 +8,12 @@
"use strict"; "use strict";
/*jslint bitwise: false, white: false */ /*jslint bitwise: false, white: false */
/*global window, console, document, navigator, ActiveXObject*/ /*global window, console, document, navigator, ActiveXObject */
// Globals defined here // 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 * Make arrays quack
*/ */
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
"use strict"; "use strict";
/*jslint bitwise: false, white: false */ /*jslint bitwise: false, white: false */
/*global window, console, document, navigator, ActiveXObject*/ /*global window, document */
// Globals defined here // Globals defined here
var WebUtil = {}, $; var WebUtil = {}, $;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment