update build

This commit is contained in:
Stefan Breunig 2013-02-05 19:52:57 +01:00
parent 21ea5beabd
commit c4a34243d8

View File

@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @id ingress-intel-total-conversion@breunigs // @id ingress-intel-total-conversion@breunigs
// @name intel map total conversion // @name intel map total conversion
// @version 0.2-2013-02-05-174003 // @version 0.2-2013-02-05-195233
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/breunigs/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/total-conversion-build.user.js // @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/total-conversion-build.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/total-conversion-build.user.js // @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/total-conversion-build.user.js
@ -630,7 +630,7 @@ window.unixTimeToString = function(time, full) {
window.unixTimeToHHmm = function(time) { window.unixTimeToHHmm = function(time) {
if(!time) return null; if(!time) return null;
var d = new Date(typeof time === 'string' ? parseInt(time) : time); var d = new Date(typeof time === 'string' ? parseInt(time) : time);
return d.toLocaleTimeString().slice(0, -3); return d.getHours() + ':' + d.getSeconds();
} }