From 83b3c12559b180cd697ce8dbe5f2d14df8dc8792 Mon Sep 17 00:00:00 2001 From: "Anthony J. Thibault" Date: Wed, 22 Feb 2017 17:01:31 -0800 Subject: [PATCH] Removed Window.alert() because it was blocking the defaultScripts thread. --- scripts/defaultScripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/defaultScripts.js b/scripts/defaultScripts.js index e544f3cd1f..f2791f0275 100644 --- a/scripts/defaultScripts.js +++ b/scripts/defaultScripts.js @@ -94,7 +94,7 @@ function menuItemEvent(menuItem) { } else if (isChecked === false) { Settings.setValue(SETTINGS_KEY, false); } - Window.alert('You must reload all scripts for this to take effect.'); + console.log('You must reload all scripts for this to take effect.'); } }