piskel/dev/js/widgets/SynchronizedInputs.js
2017-05-22 09:56:42 +02:00

41 lines
1.1 KiB
JavaScript

(function () {
var ns = $.namespace('pskl.widgets');
ns.SynchronizedInputs = function (options) {
this.leftInput = options.leftInput;
this.rightInput = options.rightInput;
this.synchronize = options.synchronize;
this.syncEnabled = true;
this.lastInput = this.leftInput;
pskl.utils.Event.addEventListener(this.leftInput, 'input', this.onInput_, this);
pskl.utils.Event.addEventListener(this.rightInput, 'input', this.onInput_, this);
};
ns.SynchronizedInputs.prototype.destroy = function () {
pskl.utils.Event.removeAllEventListeners(this);
this.leftInput = null;
this.rightInput = null;
this.lastInput = null;
};
ns.SynchronizedInputs.prototype.enableSync = function () {
this.syncEnabled = true;
this.synchronize(this.lastInput);
};
ns.SynchronizedInputs.prototype.disableSync = function () {
this.syncEnabled = false;
};
ns.SynchronizedInputs.prototype.onInput_ = function (evt) {
var target = evt.target;
if (this.syncEnabled) {
this.synchronize(target);
}
this.lastInput = target;
};
})();