svn path=/Website/trunk/; revision=33171
This commit is contained in:
2017-03-16 14:23:55 +00:00
parent 840feb2253
commit 63ceaa96a1

View File

@@ -728,7 +728,8 @@ function toTimeString(jsDate, bWithSeconds, converted)
return "";
var hh = Math.floor(jsDate);
var mm = (jsDate*60) % 60;
jsDate = (new Date).setHours(hh,mm,0,0);
jsDate = new Date();
jsDate.setHours(hh,mm,0,0);
}
if (!jsDate)