diff --git a/www/common/drive-ui.js b/www/common/drive-ui.js index 555301268..6fbc381b7 100644 --- a/www/common/drive-ui.js +++ b/www/common/drive-ui.js @@ -3907,7 +3907,18 @@ define([ setEditable(true, false, true); } - if (APP.readOnly) { + if (APP.readOnly && !APP.loggedIn) { + // XXX this incorrectly prompts guests to login/register even when they lack editing rights. + (function () { + var $banner = $(Pages.setHTML(h('div.cp-app-drive-content-info-box'), Messages.fm_info_sharedFolder)); + $banner.find('[href="/login/"], [href="/register/"]').click(function (ev) { + ev.preventDefault(); + var page = this.getAttribute('href').replace(/\//g, ''); + common.setLoginRedirect(page); + }); + $content.prepend($banner); + }()); + } else if (APP.readOnly) { // Read-only drive (team?) $content.prepend($readOnly.clone()); } else if (sfId && folders[sfId] && folders[sfId].readOnly) {