Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/platforms/default/lib/date.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/platforms/default/lib/date.js')
-rwxr-xr-xutils/platforms/default/lib/date.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/platforms/default/lib/date.js b/utils/platforms/default/lib/date.js
index 8452795..4136d11 100755
--- a/utils/platforms/default/lib/date.js
+++ b/utils/platforms/default/lib/date.js
@@ -3,6 +3,6 @@
if (!Date.prototype.toISOString) {
Date.prototype.toISOString = function() {
return (this.getFullYear() + "-" + this.getMonth() + "-" + this.getDate() + "T" + this.getHours() + ":" + this.getMinutes() + ":" + this.getSeconds() + "Z");
- };
+ }
}