Valentin Deleplace

Results 121 comments of Valentin Deleplace

A few links about the "Web Share API" standard thats works in mobile web pages, providing the same experience as native mobile apps: - https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share - https://caniuse.com/?search=web%20share%20api - https://css-tricks.com/how-to-use-the-web-share-api/

Hi Greg, this issue is "closed" but my brand new pending PR is at #8

I confirm it doesn't work correctly on iOS Chrome. Which is a bit weird as `navigator.share` being truthy is what triggers the new button to be displayed at all —...

Visiting `chrome://inspect` unveils the message `Error: Sharing is not supported for this type of url`

So, iOS Chrome (Bling) seems to be the only browser being picky about sharing the object `window.location`. Please find the fix at #10.

I also filed this [improvement suggestion](https://bugs.chromium.org/p/chromium/issues/detail?id=1354100) to the Chromium bug tracker.

This requires go >= 1.9, which should be fine for most.

Cameron's fix is one fine way to solve this. It makes the code readable again, at the cost of having block with white background inside a dark page. I can...

I experimented 2 ways of adding a light-tone shadow: - With the CSS style `filter: drop-shadow(0.5px 0.5px 0.3px #CCC);` - By editing the original image While these have the advantage...

We can achieve much better results by serving a different image for light theme (default) and dark theme. Something like ``` ``` I could make a CL for this.