Fix the upgrade and donate buttons in the home page

This commit is contained in:
yflory
2017-06-06 11:37:54 +02:00
parent ee57458158
commit ac91d2f413
5 changed files with 10 additions and 58 deletions

View File

@@ -703,12 +703,15 @@ define([
var text;
var feedback;
var url;
if (ApiConfig.allowSubscriptions && Cryptpad.isLoggedIn()) {
text = Messages.upgradeAccount;
feedback = "UPGRADE_ACCOUNT";
url = Cryptpad.upgradeURL;
} else {
text = Messages.supportCryptpad;
feedback = "SUPPORT_CRYPTPAD";
url = Cryptpad.donateURL;
}
var $upgrade = toolbar.$top.find('.' + UPGRADE_CLS).attr({
@@ -716,7 +719,7 @@ define([
}).text(text).show()
.click(function () {
Cryptpad.feedback(feedback);
window.open(Cryptpad.donateURL,'_blank');
window.open(url,'_blank');
});
return $upgrade;
};