Skip to content

Commit 10313e0

Browse files
committed
Actually fixed issue from last commit
1 parent 5cda014 commit 10313e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/emo/js/daqcontrol.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,9 @@ return html;
272272

273273
}
274274
function GetElapsedTime(startTimeString){
275+
startTimeString+="Z";
275276
var currentDate = new Date().getTime();
276277
var startDate = Date.parse(startTimeString);
277-
278278
var seconds = Math.abs(currentDate - startDate)/1000;
279279
var hours = Math.floor(seconds/3600);
280280
var minutes = Math.floor((seconds - (hours*3600) ) /60);

0 commit comments

Comments
 (0)