Remove the delay between a change and its propagation to chainpad

pull/1/head
Yann Flory 9 years ago
parent fa6914037c
commit f5f8f6e1eb

@ -110,8 +110,8 @@ define([
var onLocal = config.onLocal = function () { var onLocal = config.onLocal = function () {
if (initializing) { return; } if (initializing) { return; }
console.log("LOCAL"); console.log("LOCAL");
module.patchText(canonicalize($textarea.val()));
editor.save(); editor.save();
module.patchText(canonicalize($textarea.val()));
}; };
var onAbort = config.onAbort = function (info) { var onAbort = config.onAbort = function (info) {
@ -123,15 +123,6 @@ define([
var realtime = module.realtime = Realtime.start(config); var realtime = module.realtime = Realtime.start(config);
editor.on('change', onLocal); editor.on('change', onLocal);
['keydown', /*'keyup',*/ 'select', 'mousedown', 'mouseup', 'click'].forEach(function (evt) {
$textarea.on(evt, function () {
onRemote();
onLocal();
});
// onLocal?
});
}; };
var interval = 100; var interval = 100;

Loading…
Cancel
Save