Escape double quotes ("") in sw-text (fix #34)

master
Skylar Ittner 6 years ago
parent 404b9220b8
commit 41bb633940

@ -74,7 +74,7 @@ $(document).ready(function () {
});
$(".sw-text").each(function () {
var text = $(this).text().trim();
var text = $(this).text().trim().replace(/"/g, """);
var component = $(this).data("component");
$(this).html("<input type=\"text\" data-component=\"" + component + "\" class=\"sw-text-input\" value=\"" + text + "\" placeholder=\"Click to edit\">");
$(this).closest("a").removeAttr("href"); // Issue #33

Loading…
Cancel
Save