Skip to content

Commit fca58e9

Browse files
committed
Minor change to build date conversion
1 parent 178e8dc commit fca58e9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

builds.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,11 +352,9 @@ function listBuild(data) {
352352
break;
353353
}
354354
var ts = new Date(data['timestamp']);
355-
var started;
355+
var started = ts.toString();
356356
if (ts.toDateString && ts.toTimeString)
357357
started = ts.toDateString() + ' ' + ts.toTimeString().replace(/ \([^\)]+\)/g, '');
358-
else
359-
started = ts.toString();
360358
p.appendChild(document.createTextNode('Started ' + started + (cause || '')));
361359
p.appendChild(document.createElement('br'));
362360
p.appendChild(document.createTextNode('More information on the '));

0 commit comments

Comments
 (0)