MCPcopy Create free account
hub / github.com/aurelia/binding / bind

Method bind

src/select-value-observer.js:153–159  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

151 }
152
153 bind() {
154 this.domObserver = DOM.createMutationObserver(() => {
155 this.synchronizeOptions();
156 this.synchronizeValue();
157 });
158 this.domObserver.observe(this.element, { childList: true, subtree: true, characterData: true });
159 }
160
161 unbind() {
162 this.domObserver.disconnect();

Callers

nothing calls this directly

Calls 2

synchronizeOptionsMethod · 0.95
synchronizeValueMethod · 0.95

Tested by

no test coverage detected