This commit is contained in:
David Fugate 2011-09-23 16:28:58 -07:00
commit 660a2a08eb
2 changed files with 4 additions and 2 deletions

View File

@ -42,6 +42,7 @@ function Presenter() {
updateCounts(); updateCounts();
//TODO: eventually remove this guard.
if(test.result === 'fail') { if(test.result === 'fail') {
logResult(test); logResult(test);
} }
@ -71,7 +72,7 @@ function Presenter() {
$('.button-start').attr('src', 'resources/images/start.png'); $('.button-start').attr('src', 'resources/images/start.png');
$('.button-start').fadeOut('fast'); $('.button-start').fadeOut('fast');
//progressBar.text("Testing complete!"); progressBar.find(".text").html("Testing complete!");
if (isSiteDebugMode()) { if (isSiteDebugMode()) {
this.activityBar.text('Overall Execution Time: ' + elapsed + ' minutes'); this.activityBar.text('Overall Execution Time: ' + elapsed + ' minutes');
} else { } else {

View File

@ -42,6 +42,7 @@ function Presenter() {
updateCounts(); updateCounts();
//TODO: eventually remove this guard.
if(test.result === 'fail') { if(test.result === 'fail') {
logResult(test); logResult(test);
} }
@ -71,7 +72,7 @@ function Presenter() {
$('.button-start').attr('src', 'resources/images/start.png'); $('.button-start').attr('src', 'resources/images/start.png');
$('.button-start').fadeOut('fast'); $('.button-start').fadeOut('fast');
//progressBar.text("Testing complete!"); progressBar.find(".text").html("Testing complete!");
if (isSiteDebugMode()) { if (isSiteDebugMode()) {
this.activityBar.text('Overall Execution Time: ' + elapsed + ' minutes'); this.activityBar.text('Overall Execution Time: ' + elapsed + ' minutes');
} else { } else {