DOM99
DOM99 copied to clipboard
Extend html with directives
One way would be to be able to provide a custom removeNode function ``` const removeNode = (node) => { if (node.nodeType === 1) { node.animate([ // keyframes { transform:...
See plans: https://github.com/GrosSacASac/DOM99/blob/master/CONTRIBUTING.md "Create a better documentation experience" Also translations
One of the strength of this framework is the mapping between graphs (variables) and DOM. Everything has to be done manually. Create a tool that takes example JSON and outputs...
investigate why both cases are different sometimes d.feed( d.scopeFromArray([scope, 'x']), x ); d.feed( scope, {x} );
including data-function data-variable etc plugins have at least 3 functions: start, run, end they should have access to the shared state of the singleton
The tests are run locally and manually. See SpecRunner.html in https://github.com/GrosSacASac/DOM99/tree/master/tests/specification Ideally tests are run on every commit. They should run on browser environment. It should still be possible to...
.value works fine for single value select. But only shows the first one for select multiple Use selectedOptions property.