You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
579 B
JavaScript
22 lines
579 B
JavaScript
define([], function () {
|
|
var common = {};
|
|
|
|
/*
|
|
TODO make this not blow up when disconnected or lagging...
|
|
*/
|
|
common.whenRealtimeSyncs = function (realtime, cb) {
|
|
if (typeof(realtime.getAuthDoc) !== 'function') {
|
|
return void console.error('improper use of this function');
|
|
}
|
|
setTimeout(function () {
|
|
if (realtime.getAuthDoc() === realtime.getUserDoc()) {
|
|
return void cb();
|
|
} else {
|
|
realtime.onSettle(cb);
|
|
}
|
|
}, 0);
|
|
};
|
|
|
|
return common;
|
|
});
|