use upgradeURL with usage bar

pull/1/head
ansuz 2017-06-09 10:46:11 +02:00
parent fe2fef5e4c
commit f1a9002417
1 changed files with 6 additions and 4 deletions

View File

@ -23,11 +23,13 @@ define([
Additionally, there is some basic functionality for import/export.
*/
var origin = encodeURIComponent(window.location.hostname);
var common = window.Cryptpad = {
Messages: Messages,
Clipboard: Clipboard,
donateURL: 'https://accounts.cryptpad.fr/#/donate?on=' + window.location.hostname,
upgradeURL: 'https://accounts.cryptpad.fr/#/?on=' + window.location.hostname,
donateURL: 'https://accounts.cryptpad.fr/#/donate?on=' + origin,
upgradeURL: 'https://accounts.cryptpad.fr/#/?on=' + origin,
account: {},
};
@ -829,9 +831,9 @@ define([
(quota >= 0.8 || alwaysDisplayUpgrade) &&
data.plan !== "power")
{
var origin = encodeURIComponent(window.location.hostname);
// TODO show donate url if applicable
var $upgradeLink = $('<a>', {
href: "https://accounts.cryptpad.fr/#!on=" + origin,
href: common.upgradeLink,
rel: "noreferrer noopener",
target: "_blank",
}).appendTo($container);