Skip to content
This repository has been archived by the owner on Jun 5, 2020. It is now read-only.

Commit

Permalink
Merge pull request #23 from GCheung55/patch-1
Browse files Browse the repository at this point in the history
Add quotes to `class` property in html2 reporter
  • Loading branch information
augustl committed Mar 7, 2014
2 parents fad0c88 + 0d49e3c commit 13bacc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reporters/html2.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
"context:start": function (context) {
var container = this.elements.runContainer;
container.appendChild(el(this.doc, "h2", { text: context.name }));
this.list = el(this.doc, "table", { class: "table table-striped" });
this.list = el(this.doc, "table", { "class": "table table-striped" });
container.appendChild(this.list);
},

Expand Down

0 comments on commit 13bacc1

Please sign in to comment.