www

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

commit 3ae7cc308ff2c9f4c8f843ae9269cd44d23f6efe
parent 854842c00356317de7cac128cb8a3bc5c963d432
Author: Simon Kornblith <simon@simonster.com>
Date:   Wed, 17 Sep 2008 04:25:18 +0000

don't install text/x-csl files as hidden


Diffstat:
Mchrome/content/zotero/xpcom/mimeTypeHandler.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/mimeTypeHandler.js b/chrome/content/zotero/xpcom/mimeTypeHandler.js @@ -50,7 +50,7 @@ Zotero.MIMETypeHandler = new function () { this.addHandler("application/x-endnote-refer", Zotero.Ingester.importHandler, true); this.addHandler("application/x-research-info-systems", Zotero.Ingester.importHandler, true); } - this.addHandler("text/x-csl", function(a1, a2, a3) { Zotero.Styles.install(a1, a2, a3) }); + this.addHandler("text/x-csl", function(a1, a2) { Zotero.Styles.install(a1, a2) }); } /**