cryptpad/www/common/sframe-boot2.js

36 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-08-07 14:27:57 +00:00
// This is stage 1, it can be changed but you must bump the version of the project.
// Note: This must only be loaded from inside of a sandbox-iframe.
define([
'/common/requireconfig.js',
'/common/test.js'
], function (RequireConfig, Test) {
2017-08-22 13:50:10 +00:00
require.config(RequireConfig());
2017-08-09 15:37:55 +00:00
2017-08-07 14:27:57 +00:00
// most of CryptPad breaks if you don't support isArray
if (!Array.isArray) {
Array.isArray = function(arg) { // CRYPTPAD_SHIM
return Object.prototype.toString.call(arg) === '[object Array]';
};
}
var mkFakeStore = function () {
var fakeStorage = {
getItem: function (k) { return fakeStorage[k]; },
setItem: function (k, v) { fakeStorage[k] = v; return v; },
removeItem: function (k) { delete fakeStorage[k]; }
2017-08-07 14:27:57 +00:00
};
return fakeStorage;
};
window.__defineGetter__('localStorage', function () { return mkFakeStore(); });
window.__defineGetter__('sessionStorage', function () { return mkFakeStore(); });
window.CRYPTPAD_INSIDE = true;
// This test is for keeping the testing infrastructure operating
// until all tests have been registered.
// This test is completed in common-interface.js
Test(function (t) { Test.__ASYNC_BLOCKER__ = t; });
2017-08-07 14:27:57 +00:00
require([document.querySelector('script[data-bootload]').getAttribute('data-bootload')]);
});