Skip to content

Commit

Permalink
fix: small bug with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Bijaoui committed Aug 24, 2016
1 parent dcfde9f commit 71ae504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = {
} else if (/null/.test(match)) {
cls = "null";
}
return "<span class="" + cls + "">" + match + "</span>";
return "<span class=" + cls + ">" + match + "</span>";
});
}
}
Expand Down

0 comments on commit 71ae504

Please sign in to comment.