Binyamin Laukstein
Binyamin Laukstein
@patrickhulce, hi! The issue I think is how manifest download is handled, > @paulirish: Looking at the chromium source now, the earliest the manifest is fetched on a new site...
I think @clshortfuse is referring to spec issue https://github.com/w3c/manifest/issues/758 > `color_scheme` [API proposal](https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/master/ImageResource-color_scheme/explainer.md#api-proposal) > > "icons": [ > { > "src": "/icons/play-later.svg", > "type": "image/svg+xml", > "purpose": "any", > "color_scheme":...
FYI, Chrome canary (https://bugs.chromium.org/p/chromium/issues/detail?id=578122) supports now `prefers-color-scheme` in SVG also used in App Manifest: ``` circle { fill: yellow; stroke: black; stroke-width: 3px; } @media (prefers-color-scheme: dark) { circle {...
@owen-m1, that would require me to add whole Vue framework for this basic concept. Is not likable.
@owen-m1, why to depend on `data-id` attribute when you can do it by default without any attributes. The best would be to index by default with Number and allow to...
@ONLYOFFICE, FYI to add bidi-directional support (LTR, RTL and mixed) in Web interface is as simple to add to element `dir=auto`.
@andrieslouw, is the request limit per visitor IP or referrer server (the domain where the images are used as ``) ? Maybe it is worth to update https://images.weserv.nl/faq/#are-there-any-limitations with better...
Shortly saying the limitation hasn't been changed, making impossible to use images.weserv.nl for things like image gallery.
This is duplication of #40 that was closed and open as #41. **refresh-sf** haven't maintained for years, I would say is disconnected.
While using `mouseenter` and not `mouseover`, it will not fire zoom when user has already on hover state, for example try to implement image zoom for full screen size element...