|
|
@ -7,13 +7,12 @@ define([
|
|
|
|
'/common/common-constants.js',
|
|
|
|
'/common/common-constants.js',
|
|
|
|
'/common/common-feedback.js',
|
|
|
|
'/common/common-feedback.js',
|
|
|
|
'/common/outer/local-store.js',
|
|
|
|
'/common/outer/local-store.js',
|
|
|
|
//'/common/outer/store-rpc.js',
|
|
|
|
|
|
|
|
'/common/outer/worker-channel.js',
|
|
|
|
'/common/outer/worker-channel.js',
|
|
|
|
|
|
|
|
|
|
|
|
'/customize/application_config.js',
|
|
|
|
'/customize/application_config.js',
|
|
|
|
'/bower_components/nthen/index.js',
|
|
|
|
'/bower_components/nthen/index.js',
|
|
|
|
], function (Config, Messages, Util, Hash,
|
|
|
|
], function (Config, Messages, Util, Hash,
|
|
|
|
Messaging, Constants, Feedback, LocalStore, /*AStore, */Channel,
|
|
|
|
Messaging, Constants, Feedback, LocalStore, Channel,
|
|
|
|
AppConfig, Nthen) {
|
|
|
|
AppConfig, Nthen) {
|
|
|
|
|
|
|
|
|
|
|
|
/* This file exposes functionality which is specific to Cryptpad, but not to
|
|
|
|
/* This file exposes functionality which is specific to Cryptpad, but not to
|
|
|
@ -867,8 +866,13 @@ define([
|
|
|
|
worker.postMessage(data);
|
|
|
|
worker.postMessage(data);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
// TODO fallback no webworker?
|
|
|
|
require(['/common/outer/noworker.js'], waitFor2(function (NoWorker) {
|
|
|
|
console.error('NO SW OR WW');
|
|
|
|
NoWorker.onMessage(function (data) {
|
|
|
|
|
|
|
|
msgEv.fire({data: data});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
postMsg = function (d) { setTimeout(function () { NoWorker.query(d); }); };
|
|
|
|
|
|
|
|
NoWorker.create();
|
|
|
|
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).nThen(function () {
|
|
|
|
}).nThen(function () {
|
|
|
|
Channel.create(msgEv, postMsg, function (chan) {
|
|
|
|
Channel.create(msgEv, postMsg, function (chan) {
|
|
|
|