make context menu open correct app on correct port

pull/1/head
ansuz 2017-10-05 11:14:41 +02:00
parent deed04108b
commit c936e5ae73
1 changed files with 1 additions and 1 deletions

View File

@ -2640,7 +2640,7 @@ define([
else if ($(this).hasClass("cp-app-drive-context-newdoc")) {
var type = $(this).data('type') || 'pad';
sessionStorage[Cryptpad.newPadPathKey] = filesOp.isPathIn(currentPath, [TRASH]) ? '' : currentPath;
window.open('/' + type + '/');
window.open(APP.origin + '/' + type + '/');
}
APP.hideMenu();
});