Part of auto-sync support

This commit is contained in:
Dan Stillman 2008-06-30 01:01:53 +00:00
parent 96a388137f
commit 1bf13aaa1a
2 changed files with 2 additions and 0 deletions

View file

@ -266,6 +266,7 @@ var Zotero = new function(){
Zotero.Zeroconf.init();
Zotero.Sync.init();
Zotero.Sync.Server.init();
this.initialized = true;

View file

@ -83,6 +83,7 @@ function setTimeout(func, ms){
// {} implements nsITimerCallback
timer.initWithCallback({notify:func}, ms,
Components.interfaces.nsITimer.TYPE_ONE_SHOT);
return timer;
}