Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 13d6e0f

Browse files
committedOct 6, 2016
bug: fix quotes
1 parent 08412c7 commit 13d6e0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎examples/simple/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var vm = new Vue({
2424
} else if (/null/.test(match)) {
2525
cls = "null";
2626
}
27-
return "<span class="" + cls + "">" + match + "</span>";
27+
return "<span class=\"" + cls + "\">" + match + "</span>";
2828
});
2929
}
3030
}

0 commit comments

Comments
 (0)
Please sign in to comment.