Connects a [[Mutable]] to a DOM-Element and synchronizes that mutable with the mutator stored within.
Updates the mutable on interaction with the element and the element in time intervals.
Recursive method taking the a [[ƒ.Mutable]] as a template to create a [[ƒ.Mutator]] or update the given [[ƒ.Mutator]]
with the values in the given UI-domElement
Parameters
_mutable: Mutable | MutableArray<Mutable>
_domElement: HTMLElement
Optional_mutator: Mutator
Optional_types: Mutator
Returns Mutator
StaticupdateMutator
updateMutator(_domElement, _mutator): Mutator
Recursive method taking an existing [[ƒ.Mutator]] as a template
and updating its values with those found in the given UI-domElement.
Recursive method taking the [[ƒ.Mutator]] of a [[ƒ.Mutable]] and updating the UI-domElement accordingly.
If an additional [[ƒ.Mutator]] is passed, its values are used instead of those of the [[ƒ.Mutable]].
Connects a [[Mutable]] to a DOM-Element and synchronizes that mutable with the mutator stored within. Updates the mutable on interaction with the element and the element in time intervals.