Fixing template tracking. Fixes #361

pull/382/head
Jordan Wright 2016-09-14 23:41:53 -05:00
parent 103fd72cc8
commit b7a2af338b
1 changed files with 5 additions and 4 deletions

View File

@ -24,10 +24,11 @@ function save(idx) {
// Fix the URL Scheme added by CKEditor (until we can remove it from the plugin) // Fix the URL Scheme added by CKEditor (until we can remove it from the plugin)
template.html = template.html.replace(/https?:\/\/{{\.URL}}/gi, "{{.URL}}") template.html = template.html.replace(/https?:\/\/{{\.URL}}/gi, "{{.URL}}")
// If the "Add Tracker Image" checkbox is checked, add the tracker // If the "Add Tracker Image" checkbox is checked, add the tracker
if ($("#use_tracker_checkbox").prop("checked") && if ($("#use_tracker_checkbox").prop("checked")) {
template.html.indexOf("{{.Tracker}}") == -1 && if (template.html.indexOf("{{.Tracker}}") == -1 &&
template.html.indexOf("{{.TrackingUrl}}") == -1) { template.html.indexOf("{{.TrackingUrl}}") == -1) {
template.html = template.html.replace("</body>", "{{.Tracker}}</body>") template.html = template.html.replace("</body>", "{{.Tracker}}</body>")
}
} else { } else {
// Otherwise, remove the tracker // Otherwise, remove the tracker
template.html = template.html.replace("{{.Tracker}}</body>", "</body>") template.html = template.html.replace("{{.Tracker}}</body>", "</body>")