We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 178e8dc commit fca58e9Copy full SHA for fca58e9
builds.md
@@ -352,11 +352,9 @@ function listBuild(data) {
352
break;
353
}
354
var ts = new Date(data['timestamp']);
355
- var started;
+ var started = ts.toString();
356
if (ts.toDateString && ts.toTimeString)
357
started = ts.toDateString() + ' ' + ts.toTimeString().replace(/ \([^\)]+\)/g, '');
358
- else
359
- started = ts.toString();
360
p.appendChild(document.createTextNode('Started ' + started + (cause || '')));
361
p.appendChild(document.createElement('br'));
362
p.appendChild(document.createTextNode('More information on the '));
0 commit comments