Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
evlach committed Aug 12, 2014
2 parents d293bf5 + 498ea05 commit 4cce525
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions js/testing-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,9 @@ accessdb.Models.TestingHelper = function (){
return count;
},
progressUpdate : function (){
var current = count + 1;
var done = count;
var all = this.countMore() + count;
$("#axsdb-page-test-run progress").attr("max", all);
$("#axsdb-page-test-run progress").attr("value", current);
$("#axsdb-page-test-run progress").html(current + " of " + all + " Tests finished");
$("#axsdb-page-test-run h1 .subheading").html('Progress: ' + done + " of " + all + " Tests finished");
}
}
}
}
2 changes: 1 addition & 1 deletion pages/test-run.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<li><span><span>View Results</span></span></li>
<li><span><span>Submit Results</span></span></li>
</ol>
<h1>Carry out Tests <span class="subheading">Progress: <progress value="0" max="2">0 of 2 Tests finished</progress></span></h1>
<h1>Carry out Tests <span class="subheading">Progress: x of y Tests finished</span></h1>
<div class="with-filter">
<aside class="column-first">
<h2 class="information"><span class="icon-info"></span> Information</h2>
Expand Down
2 changes: 1 addition & 1 deletion pages/tests-run.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<li><span><span>View Results</span></span></li>
<li><span><span>Submit Results</span></span></li>
</ol>
<h1>Run Test Cases</h1>
<h1>Select Test Cases</h1>
<div class="with-filter">
<aside class="column-first" aria-label="Filter results">
<div class="column-filters">
Expand Down
2 changes: 1 addition & 1 deletion templates.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h2>More Information</h2>
Plugin: <%= p.plugin.name %> <%= p.plugin.version.text %> <br>
<% } %>
<% if(p.platform.name) { %>
Operating System: <%= p.platform.name %> <%= p.assistiveTechnology.version.text %>
Operating System: <%= p.platform.name %> <%= p.platform.version.text %>
<% } %>
</label>
</td>
Expand Down

0 comments on commit 4cce525

Please sign in to comment.