diff options
author | Git <git@what.cd> | 2013-02-23 08:00:22 +0000 |
---|---|---|
committer | Git <git@what.cd> | 2013-02-23 08:00:22 +0000 |
commit | 019c241d081b535e38c103a67949ba9756d919b6 (patch) | |
tree | 000bb490db50821a444759dfa3d755643b027080 /static/functions/script_start.js | |
parent | c2746069c183484bf0f3eff54d8a27db1b738509 (diff) | |
download | Gazelle-019c241d081b535e38c103a67949ba9756d919b6.zip Gazelle-019c241d081b535e38c103a67949ba9756d919b6.tar.gz Gazelle-019c241d081b535e38c103a67949ba9756d919b6.tar.bz2 |
Empty commit
Diffstat (limited to 'static/functions/script_start.js')
-rw-r--r-- | static/functions/script_start.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/static/functions/script_start.js b/static/functions/script_start.js index 7cb7bd8..35ac5da 100644 --- a/static/functions/script_start.js +++ b/static/functions/script_start.js @@ -265,6 +265,14 @@ util.fn = util.prototype = { } return this; }, + enable : function () { + for (var i=0,il=this.objects.length;i<il;i++) { + if (this.objects[i].disabled == true) { + this.objects[i].disabled = false; + } + } + return this; + }, html : function (html) { for (var i=0,il=this.objects.length;i<il;i++) { this.objects[i].innerHTML = html; |