From 8f7335ff64621314b2dd93e5a2c45d79c9fc2b0c Mon Sep 17 00:00:00 2001 From: Gary Kim Date: Sat, 13 Jul 2019 10:59:51 +0800 Subject: [PATCH] Fix an issue with some pages throwing 'not defined' js exceptions Fix an issue introduced by 831288cc916d5301beaa0adc1d912d6748a4cdaa Signed-off-by: Gary Kim --- public/js/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/js/index.js b/public/js/index.js index b5ead5e60619..39a283c431f3 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -11,7 +11,9 @@ var csrf; var suburl; // Disable Dropzone auto-discover because it's manually initialized -Dropzone.autoDiscover = false; +if (typeof(Dropzone) !== "undefined") { + Dropzone.autoDiscover = false; +} // Polyfill for IE9+ support (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from) if (!Array.from) {