ddd

Results 52 comments of ddd

@Freak613 I have changed the version and it worked ok. Now I updated the template to new complicated one. Please have a look at the link https://codesandbox.io/s/1more-forked-r8qz9?file=/src/index.js Error `'get firstChild'...

If you are going to "fix" it, I will wait for the release. If not, I am going to change my html. What do you think? BTW, that html template...

> > Also, I see there is another issue where className "active" leaks into markup instead of applying to element attribute. That is definitely an issue that I have to...

> @Dan-Do I see. That was interesting discovery, your `` elements seems correct HTML5 format but parser failed to parse it, since it was made to parse XHTML where it...

Please look at this link https://codesandbox.io/s/1more-forked-pu42j?file=/src/index.js - How to append a component to an element ``document.getElementById("content-placeholder").append(html`${view_foo()}`)`` (instead of render & mount)? - Is it possible to use observerable outside of...

I just tested `1.` and found that it does not keep the state. (updated https://codesandbox.io/s/1more-forked-pu42j) ```javascript const Foo = component((c) => { let view = "view_foo"; const isActive = useSubscription(...

Thank you for the advice. I just need a simple solution, so I am going with this for now. ```javascript function loadView(view) { write(view, activeRoute); if (!loadedViews.includes(view)) { document .querySelector("#content-placeholder")...

What's wrong with this? I can't access the arguments ```javascript const App = component((c) => { let foo = "foo"; return (view, pages, currentPage, callback) => { return html` ${pages.map(page...

Can youexplain why the onclick does not work in this example ```javascript const App = component((c) => { const error = box(''); const getError = useSubscription(c, error); function ReloadState() {alert('ok')}...

Could you please help me check this? `Uncaught TypeError: can't access property "a", prev.i is undefined` ```javascript const App = component((c) => { const vatInvoice = {id:"vat-test"}; const showModal =...