Merge branch 'staging' of github.com:xwiki-labs/cryptpad into staging

pull/1/head
yflory 7 years ago
commit 035150614d

@ -657,9 +657,10 @@ define([
// We need to override the "a" tag action here because it is inside the iframe! // We need to override the "a" tag action here because it is inside the iframe!
var inDrive = /^\/drive/; var inDrive = /^\/drive/;
var origin = config.metadataMgr.getPrivateData().origin; var privateData = config.metadataMgr.getPrivateData();
var origin = privateData.origin;
var href = inDrive.test(origin) ? origin+'/index.html' : origin+'/drive/'; var pathname = privateData.pathname;
var href = inDrive.test(pathname) ? origin+'/index.html' : origin+'/drive/';
var buttonTitle = inDrive ? Messages.header_homeTitle : Messages.header_logoTitle; var buttonTitle = inDrive ? Messages.header_homeTitle : Messages.header_logoTitle;
var $aTag = $('<a>', { var $aTag = $('<a>', {

Loading…
Cancel
Save