web-js
web-js copied to clipboard
A js library for controlling your components from your templating engine like twig.
We can use a `fragment_uri` to load user specific data over ajax. We should have a deeper look at the implementation of @martinlagler in Kügö where it also supports lazy...
Added typescript declaration files for all javascript files.
```js function forcePassiveEventListeners(eventNames) { const func = EventTarget.prototype.addEventListener; EventTarget.prototype.addEventListener = function(...args) { if (eventNames.includes(args[0])) { args[2] = passiveEvents ? { passive: false, } : false; } func.call(this, ...args); }; }...
In this issue I want to collect some best practices and articles about accessibility which will later be part of the docs to show some best pratices examples: Accordion (Mobile...