Džuris

Results 12 issues of Džuris

### Description Fixes `deleteBlock` by using `cloneBlock` instead of `replaceBlock`, because it has a better regex. Fixes #1970 ### Checklist: - [ ] I have run `composer run-script check --timeout=0`...

I would like to resize the image only if it is larger than the size limits. This is my current code: $fopen = Image::make($image, [ 'width' => 2400, 'height' =>...

As far as I understood, I can load an image and save it in different format programmatically. Could we also add this functionality to the url API? The syntax could...

Currently the prefecth feature [triggers](https://github.com/sveltejs/sapper/blob/master/runtime/src/app/start/index.ts#L29) on hover and touch: ```javascript addEventListener('touchstart', trigger_prefetch); addEventListener('mousemove', handle_mousemove); ``` I propose it should also be invoked on `focus` to provide the feature to users...

enhancement
good first issue

It's not needed to convert to array in this example: `[...$$("a[href *='#']")].forEach(console.log);` `querySelectorAll` returns `NodeList`. While that is not an array, it does have `forEach` natively. It would be more...

`getClass` has been deprecated in PHP8. I replaced it with the suggested solution.

When triggered, my handler inserts element before the waypoint. As the waypoint is now lower, I have to recalculate position by calling `refreshAll()`. This, however fires the handler again. Here...

### Describe the bug It appears that base hrefs (e.g. ``) are not supported at the moment. I stumbled against two issues. One issue is that the prerenderer/crawler grabs all...

bug

I've come across two common issues when working with API backends and testing the endpoints in browser or just not knowing to specify the `Accept: application/json` header. Most projects work...