www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit e92a54966cb1503e8d0fad4a477c2718ee379981
parent b931ca37d2676d0ea154d24595ebd23a3cc492a2
Author: Simon Kornblith <simon@simonster.com>
Date:   Thu,  9 Jul 2015 18:05:08 -0400

Restore ZoteroPane.destroy() on close

Seems like a good thing to do, if only because it ensures we persist
changes

Diffstat:
Mchrome/content/zotero/standalone/standalone.js | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/chrome/content/zotero/standalone/standalone.js b/chrome/content/zotero/standalone/standalone.js @@ -144,6 +144,7 @@ const ZoteroStandalone = new function() { * Called before standalone window is closed */ this.onUnload = function() { + ZoteroPane.destroy(); goQuitApplication(); } }