Skip to content

Commit

Permalink
bug: fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
icebob committed Oct 6, 2016
1 parent 08412c7 commit 13d6e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/simple/main.js
Expand Up @@ -24,7 +24,7 @@ var vm = new Vue({
} 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 13d6e0f

Please sign in to comment.