Change quickstart URL to https so that it doesn't display a security warning

This commit is contained in:
Simon Kornblith 2011-07-02 17:06:02 +00:00
parent dd29d18b93
commit a8631f760a

View File

@ -227,9 +227,9 @@ var ZoteroPane = new function()
else if (Zotero.Prefs.get('firstRun2')) {
if (Zotero.Schema.dbInitialized || !Zotero.Sync.Server.enabled) {
setTimeout(function () {
var url = "http://zotero.org/start";
const url = "https://www.zotero.org/start";
if(Zotero.isStandalone) {
ZoteroStandalone.openInViewer("http://zotero.org/start");
ZoteroStandalone.openInViewer(url);
} else {
gBrowser.selectedTab = gBrowser.addTab(url);
}