From 6f6e18b4069b19297225121fc4e9c49d6965cb76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adomas=20Ven=C4=8Dkauskas?= Date: Wed, 14 Mar 2018 09:22:00 +0200 Subject: [PATCH] Increase citation delay prompt timeout to 15 seconds By prompting after 3 seconds we catch a lot of people who click through the prompt without bothering to read or figure out what it does and then come to the forums report the citing "bugs". An increased timeout will catch less people and those who are caught are possibly more likely to figure out how delayed citing updates work since they would greatly benefit from it. --- chrome/content/zotero/xpcom/integration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js index 3aabf29f7a..4fda33e726 100644 --- a/chrome/content/zotero/xpcom/integration.js +++ b/chrome/content/zotero/xpcom/integration.js @@ -51,7 +51,7 @@ const INTEGRATION_TYPE_ITEM = 1; const INTEGRATION_TYPE_BIBLIOGRAPHY = 2; const INTEGRATION_TYPE_TEMP = 3; -const DELAY_CITATIONS_PROMPT_TIMEOUT = 3/*seconds*/; +const DELAY_CITATIONS_PROMPT_TIMEOUT = 15/*seconds*/; const DELAYED_CITATION_STYLING = "\\uldash"; const DELAYED_CITATION_STYLING_CLEAR = "\\ulclear";