Use correct URL for beta builds for Windows 32-bit-on-64-bit warning
For #4172
This commit is contained in:
parent
14a0a8ab24
commit
4a9ce6b82b
1 changed files with 4 additions and 1 deletions
|
@ -6047,7 +6047,10 @@ var ZoteroPane = new function()
|
||||||
|
|
||||||
panel.removeAttribute('collapsed');
|
panel.removeAttribute('collapsed');
|
||||||
action.onclick = function () {
|
action.onclick = function () {
|
||||||
Zotero.launchURL('https://www.zotero.org/download/');
|
let url = Zotero.isBetaBuild
|
||||||
|
? 'https://www.zotero.org/support/beta_builds'
|
||||||
|
: 'https://www.zotero.org/download/';
|
||||||
|
Zotero.launchURL(url);
|
||||||
};
|
};
|
||||||
close.onclick = function () {
|
close.onclick = function () {
|
||||||
this.hideArchitectureWarning();
|
this.hideArchitectureWarning();
|
||||||
|
|
Loading…
Add table
Reference in a new issue