ractive
Version:
Next-generation DOM manipulation
20 lines (14 loc) • 372 B
JavaScript
import runloop from 'global/runloop';
var Unresolved = function ( ractive, ref, parentFragment, callback ) {
this.root = ractive;
this.ref = ref;
this.parentFragment = parentFragment;
this.resolve = callback;
runloop.addUnresolved( this );
};
Unresolved.prototype = {
teardown: function () {
runloop.removeUnresolved( this );
}
};
export default Unresolved;