Devin Weaver

Results 234 comments of Devin Weaver

I too was wondering how to have event bubbling/delegation when this rule is in place. Having to disable every time we wrap dynamic content is kinda a show stopper for...

Example use case: ```hbs {{format-strings-with-buttons-in-them (t "INTL-string-with-custom-button-tags") }} ``` Might generate some DOM like: ```html This is a sample string with an action in it. ``` Since the sentence is...

Just out of curiosity how does JavaScript adding an event handler on an element or not affect accessibility? I had thought screen readers and other web scrappers inspected the elements...

> One could imagine a select widget to choose the type, and then a type-specific template appearing for entering the details of the new thing, and then a big "create"...

What about a warning (in development) when we first construct the route maps that the user choose an ambiguous parameter name? Maybe *:id is an ambiguous name. Consider being more...

A workaround I know is this: ```typescript const resolvers = Promise.withResolvers(); resolvers.resolve(Promise.reject()); ```

Here is a _contrived_ idea on how this could work. Though, it is debatable if this is the best use case. However I can imagine some (like myself) enjoying the...

I should add that is is also possible to do this inline without monkey-patching using DisposableStack if one wished to add an some extra lines of code: ```js using stack...

I just like using the language itself to manage cleanup. It is why explicit resource management was added to the language. I mean why reinvent the wheel? I think binding...

I'm confused, Why can you just save the HTML to the DiskStation NAS? Doesn't it act like a hard drive? If you needed anything more then that then better to...