www

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

commit 1bf13aaa1a445fe630f5e177ac92131dcd94d304
parent 96a388137f09bbadd129724ab55402aab3647390
Author: Dan Stillman <dstillman@zotero.org>
Date:   Mon, 30 Jun 2008 01:01:53 +0000

Part of auto-sync support


Diffstat:
Mchrome/content/zotero/xpcom/zotero.js | 1+
Mcomponents/zotero-service.js | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js @@ -266,6 +266,7 @@ var Zotero = new function(){ Zotero.Zeroconf.init(); Zotero.Sync.init(); + Zotero.Sync.Server.init(); this.initialized = true; diff --git a/components/zotero-service.js b/components/zotero-service.js @@ -83,6 +83,7 @@ function setTimeout(func, ms){ // {} implements nsITimerCallback timer.initWithCallback({notify:func}, ms, Components.interfaces.nsITimer.TYPE_ONE_SHOT); + return timer; }