From 0be16cf1782724131a3de80b691d08a5a964638f Mon Sep 17 00:00:00 2001 From: Fredrick Brennan Date: Mon, 19 May 2014 14:11:24 -0400 Subject: [PATCH] Fix js error when allow_delete is false --- templates/main.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/main.js b/templates/main.js index 953d8849..231b8043 100644 --- a/templates/main.js +++ b/templates/main.js @@ -264,10 +264,14 @@ var script_settings = function(script_name) { function init() { init_stylechooser(); - + + {% endraw %} + {% if config.allow_delete %} if (document.forms.postcontrols) { document.forms.postcontrols.password.value = localStorage.password; } + {% endif %} + {% raw %} if (window.location.hash.indexOf('q') != 1 && window.location.hash.substring(1)) highlightReply(window.location.hash.substring(1));