summaryrefslogtreecommitdiffstats
path: root/templates/mirrors/status.html
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-09-30 12:53:06 -0500
committerDan McGee <dan@archlinux.org>2010-09-30 12:53:06 -0500
commit0eac9698c6bdebdf5056a97b7c979b526d54ec15 (patch)
tree407bc8233af362a14272850b3b0037c15bfe6d43 /templates/mirrors/status.html
parent1da1869715249bd6cf28c3cf7812cc9b3bf752f1 (diff)
downloadarchweb-0eac9698c6bdebdf5056a97b7c979b526d54ec15.tar.gz
archweb-0eac9698c6bdebdf5056a97b7c979b526d54ec15.zip
Remove console.log statements
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/mirrors/status.html')
-rw-r--r--templates/mirrors/status.html2
1 files changed, 0 insertions, 2 deletions
diff --git a/templates/mirrors/status.html b/templates/mirrors/status.html
index 1111d047..10f409c9 100644
--- a/templates/mirrors/status.html
+++ b/templates/mirrors/status.html
@@ -122,11 +122,9 @@ $.tablesorter.addParser({
return ($.inArray(s, special) > -1) || /^[0-9]+:[0-5][0-9]$/.test(s);
},
format: function(s) {
- console.log('duration: ' + s);
var special = ['', 'unknown', '∞'];
if($.inArray(s, special) > -1) return Number.MAX_VALUE;
matches = /^([0-9]+):([0-5][0-9])$/.exec(s);
- console.log(s, matches[1] * 60 + matches[2]);
return matches[1] * 60 + matches[2];
},
type: 'numeric'