- Nov 2022
-
community.interledger.org community.interledger.org
-
Publishers can create interactive stories on the platform and incorporate them in their website.
I love this! It is similar to Prezi or VoiceThread.
Do you also support collaborative editing (public or with invited collaborators)? If yes, a high-resolution world map could be used for collaborative pinning of local events, meetups, news, videos, and so on, such as radio.garden or YouTube Geofind.
-
- Aug 2022
-
paul.kinlan.me paul.kinlan.me
Tags
Annotators
URL
-
-
w3c.github.io w3c.github.io
Tags
Annotators
URL
-
-
w3c.github.io w3c.github.io
-
- Dec 2021
-
www.telerik.com www.telerik.com
Tags
Annotators
URL
-
-
-
If your site has multiple URLs for the same content, share the page's canonical URL instead of the current URL. Instead of sharing
document.location.href
, you would check for a canonical URL<meta>
tag in the page's<head>
and share that. This will provide a better experience to the user. Not only does it avoid redirects, but it also ensures that a shared URL serves the correct user experience for a particular client. For example, if a friend shares a mobile URL and you look at it on a desktop computer, you should see a desktop version:let url = document.location.href; const canonicalElement = document.querySelector('link[rel=canonical]'); if (canonicalElement !== null) { url = canonicalElement.href; } navigator.share({url});
-
- Oct 2021
-
Tags
Annotators
URL
-