ddd

Results 52 comments of ddd

Thanks @Freak613 As I am not good at Promise, so I use this "monkey patch" and it works ok. ```javascript function LoadView(e) { ... if (!loadedViews().includes(route)) { loadedViews([...loadedViews(), route]); if...

@Freak613 I just looked at the snippet at link https://www.30secondsofcode.org/js/s/copy-to-clipboard It can only copies the plain html text, while the https://bundlephobia.com/package/[email protected] (actually ClipboardJS which I am using) keeps formatted when...

Thanks @Freak613 That one keeps the structure (in my case it's table) but still misses the font weight & color, background color.

Yes I have ```html ``` It works with moment.js ```javascript //main.js import moment from 'https://cdn.jsdelivr.net/npm/moment/dist/moment.js'; ```

> @Dan-Do you try to import from the file which is not an ES6 module. Files in `dist` directory are bundled and formatted as UMD modules so they can't be...

Does kemal support preview_mt now?

We already had Tech Empower benchmark. I read the code and see they implemented very well :)

I have the same issue. How to reproduce (don't know if it works on your environment): setup local server (build using kemal), then start the process on terminal open Firefox...

It's here, isn't it? https://krausest.github.io/js-framework-benchmark/current.html

Found the problem. The template is compiled as: ```javascript "c":["'nav-link ' + data.active_tab === 'setting' ? 'active' : ''"] ``` Which made the `+` operator calculated first. Fixed by using...