summaryrefslogtreecommitdiff
path: root/www/js
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-03-23 21:10:46 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-03-23 21:10:46 (GMT)
commit77b1cf3156c0c77a993d9df5e12b9d62e67920da (patch)
tree48195756f5f515b61d1296871e782ee58e7a6f0b /www/js
parent81a24e4523784786dcc45abcf7a48c1e563ab2d1 (diff)
remove namespaces again
Diffstat (limited to 'www/js')
-rw-r--r--www/js/clock.js2
-rw-r--r--www/js/utils.js2
2 files changed, 0 insertions, 4 deletions
diff --git a/www/js/clock.js b/www/js/clock.js
index 673374e..a2b0628 100644
--- a/www/js/clock.js
+++ b/www/js/clock.js
@@ -21,8 +21,6 @@
'use strict';
-var RHRD = RHRD || {};
-
function Clock() {
this.draw_callbacks = $.Callbacks('unique');
diff --git a/www/js/utils.js b/www/js/utils.js
index 3af67ff..ba40863 100644
--- a/www/js/utils.js
+++ b/www/js/utils.js
@@ -21,8 +21,6 @@
'use strict';
-var RHRD = RHRD || {};
-
Number.prototype.pad = function(size) {
var s = String(this);
while (s.length < (size || 2)) {s = "0" + s;}