diff --git a/src/dat/controllers/Controller.js b/src/dat/controllers/Controller.js index 3a44df3..63aeea1 100644 --- a/src/dat/controllers/Controller.js +++ b/src/dat/controllers/Controller.js @@ -105,6 +105,9 @@ define([ if (this.__onChange) { this.__onChange.call(this, newValue); } + else if (this.__onFinishChange) { + this.__onFinishChange.call(this, newValue); + } this.updateDisplay(); return this; },