www

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

commit 142a48b132beafa8b0fbfcce43e6183146fa5fa9
parent 6778d06ae73b3b4d10830286b52b69e377c3b221
Author: Simon Kornblith <simon@simonster.com>
Date:   Sun,  7 Apr 2013 18:48:18 -0400

Use ZOTERO_CONFIG for bookmarklet URL

Diffstat:
Mchrome/content/zotero/xpcom/server_connector.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/xpcom/server_connector.js b/chrome/content/zotero/xpcom/server_connector.js @@ -624,8 +624,8 @@ Zotero.Server.Connector.IEHack.prototype = { "init":function(postData, sendResponseCallback) { sendResponseCallback(200, "text/html", '<!DOCTYPE html><html><head>'+ - '<script src="https://www.zotero.org/bookmarklet/common_ie.js"></script>'+ - '<script src="https://www.zotero.org/bookmarklet/ie_hack.js"></script>'+ + '<script src="'+ZOTERO_CONFIG.BOOKMARKLET_URL+'common_ie.js"></script>'+ + '<script src="'+ZOTERO_CONFIG.BOOKMARKLET_URL+'ie_hack.js"></script>'+ '</head><body></body></html>'); } }