Move pad2 to pad and create bounce app

This commit is contained in:
Caleb James DeLisle
2017-08-28 12:25:05 +02:00
parent e62faf7c7b
commit 056285a7b6
15 changed files with 1043 additions and 2651 deletions

10
www/bounce/main.js Normal file
View File

@@ -0,0 +1,10 @@
define([], function () {
if (window.localStorage && window.localStorage.FS_hash) {
window.alert('The bounce application must only be used from the sandbox domain, ' +
'please report this issue on https://github.com/xwiki-labs/cryptpad');
return;
}
var bounceTo = decodeURIComponent(window.location.hash.slice(1));
if (!bounceTo) { return; }
window.location.href = bounceTo;
});