Skip to content

Commit

Permalink
Merge pull request #102 from KevM/htmllivefix
Browse files Browse the repository at this point in the history
HtmlLiveReporter template: Fixed js error because class is reserved
  • Loading branch information
lefthandedgoat committed Sep 4, 2013
2 parents 2af4c69 + af35377 commit a729426
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reporttemplate.html
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@
});
});

var toggleRowClass = function(el, class) {
var toggleRowClass = function(el, klass) {
var show = $(el).is(":checked")
$('tr.result .' + class).toggle(show);
$('tr.result .' + klass).toggle(show);
}

$("#passedInput").change(function () {
Expand Down

0 comments on commit a729426

Please sign in to comment.