diff options
author | Dan McGee <dan@archlinux.org> | 2010-09-30 12:53:06 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-09-30 12:53:06 -0500 |
commit | 0eac9698c6bdebdf5056a97b7c979b526d54ec15 (patch) | |
tree | 407bc8233af362a14272850b3b0037c15bfe6d43 /templates | |
parent | 1da1869715249bd6cf28c3cf7812cc9b3bf752f1 (diff) |
Remove console.log statements
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/mirrors/status.html | 2 |
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' |