Fix the pad app when cryptpad is in an iframe

This commit is contained in:
yflory
2017-09-06 11:03:20 +02:00
parent f06683e949
commit d98bbf7df9
4 changed files with 9 additions and 9 deletions

View File

@@ -298,7 +298,7 @@ define([
Object.freeze(funcs);
return { create: function (cb) {
nThen(function (waitFor) {
SFrameChannel.create(window.top, waitFor(function (sfc) { ctx.sframeChan = sfc; }));
SFrameChannel.create(window.parent, waitFor(function (sfc) { ctx.sframeChan = sfc; }), true);
// CpNfInner.start() should be here....
}).nThen(function () {
ctx.metadataMgr = MetadataMgr.create(ctx.sframeChan);