leaf

Results 85 comments of leaf

It seems convenient if `destination` can be set as a function, like ```javascript destinatin: sourcePath => 'minified/' + sourcePath, ``` Currently, I move output files based on their sourcePath. ```javascript...

@JustFly1984 `exec` is from node builtin module `child_process`. My comment is updated. ```javascript const { exec } = require('child_process'); ```

Hi, the https://github.com/josdejong/jsoneditor/blob/develop/examples/06_custom_styling.html already looks pretty good, except for the collapse/expand button icon. Maybe we could add extra icons to the [svg](https://github.com/josdejong/jsoneditor/blob/master/src/scss/img/jsoneditor-icons.svg) for the dark theme.

Hi, Good point, it would be great if you can make a PR for it.

Hi, there. Thanks for your feedback. I tried videos and it seems to work for me. You can check the demo: https://svelte.dev/repl/6d7714fa3cce4909af6c6d187271e0a1?version=3.6.10 which contains following code snippet ```html ``` Please...

Hi, thanks for your time. I'm not quite sure why the image only appears by moving the mouse after refreshing. This plugin only listens to `scroll` and `size` events. So...

Hi, thanks for the information. I've created a new sapper project and add a lazy-loaded image at the top of the index page. But I couldn't reproduce it. Could you...

I think this issue is similar to #17. Please try the latest version if you'd like to.

Hi, thanks for providing the example, which is very helpful. You're right the function would not be called at all if the element was shown not by `resize` or `scroll`....

> Workaround (sort of): open the browser console and run: > > ```js > document.querySelectorAll("#swagger-ui section.models button.model-box-control").forEach(btn => btn.click()) > ``` > > This will "click" all models in the...