|
|
@ -18,9 +18,7 @@ define([
|
|
|
|
var saveAs = window.saveAs;
|
|
|
|
var saveAs = window.saveAs;
|
|
|
|
var $iframe = $('#pad-iframe').contents();
|
|
|
|
var $iframe = $('#pad-iframe').contents();
|
|
|
|
var ifrw = $('#pad-iframe')[0].contentWindow;
|
|
|
|
var ifrw = $('#pad-iframe')[0].contentWindow;
|
|
|
|
|
|
|
|
var homePageIframe = false;
|
|
|
|
var hash = window.location.hash || localStorage.FS_hash;
|
|
|
|
|
|
|
|
var secret = Cryptpad.getSecrets(hash);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var ROOT = "root";
|
|
|
|
var ROOT = "root";
|
|
|
|
var ROOT_NAME = Messages.fm_rootName;
|
|
|
|
var ROOT_NAME = Messages.fm_rootName;
|
|
|
@ -1356,6 +1354,22 @@ define([
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// don't initialize until the store is ready.
|
|
|
|
|
|
|
|
Cryptpad.ready(function () {
|
|
|
|
|
|
|
|
if (window.location.hash && window.location.hash === "#iframe") {
|
|
|
|
|
|
|
|
$('.top-bar').hide();
|
|
|
|
|
|
|
|
$('#pad-iframe').css({
|
|
|
|
|
|
|
|
top: "0px",
|
|
|
|
|
|
|
|
height: "100%"
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
$iframe.find('body').addClass('iframe');
|
|
|
|
|
|
|
|
window.location.hash = "";
|
|
|
|
|
|
|
|
homePageIframe = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var hash = window.location.hash || localStorage.FS_hash;
|
|
|
|
|
|
|
|
var secret = Cryptpad.getSecrets(hash);
|
|
|
|
|
|
|
|
|
|
|
|
var listmapConfig = module.config = {
|
|
|
|
var listmapConfig = module.config = {
|
|
|
|
data: {},
|
|
|
|
data: {},
|
|
|
|
websocketURL: Cryptpad.getWebsocketURL(),
|
|
|
|
websocketURL: Cryptpad.getWebsocketURL(),
|
|
|
@ -1365,8 +1379,6 @@ define([
|
|
|
|
crypto: Crypto.createEncryptor(secret.keys),
|
|
|
|
crypto: Crypto.createEncryptor(secret.keys),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// don't initialize until the store is ready.
|
|
|
|
|
|
|
|
Cryptpad.ready(function () {
|
|
|
|
|
|
|
|
var rt = window.rt = module.rt = Listmap.create(listmapConfig);
|
|
|
|
var rt = window.rt = module.rt = Listmap.create(listmapConfig);
|
|
|
|
rt.proxy.on('create', function (info) {
|
|
|
|
rt.proxy.on('create', function (info) {
|
|
|
|
var realtime = module.realtime = info.realtime;
|
|
|
|
var realtime = module.realtime = info.realtime;
|
|
|
@ -1394,8 +1406,9 @@ define([
|
|
|
|
initLocalStorage();
|
|
|
|
initLocalStorage();
|
|
|
|
init(rt.proxy);
|
|
|
|
init(rt.proxy);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.on('disconnect', function () {
|
|
|
|
.on('disconnect', function (info) {
|
|
|
|
//setEditable(false);
|
|
|
|
//setEditable(false);
|
|
|
|
|
|
|
|
console.error('err');
|
|
|
|
Cryptpad.alert(Messages.common_connectionLost);
|
|
|
|
Cryptpad.alert(Messages.common_connectionLost);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|