Skip to content

Commit a9af442

Browse files
committed
docs(README.md): link to APIs used
1 parent eb5c15e commit a9af442

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
Quicklink attempts to make navigations to subsequent pages load faster. It:
77

8-
* **Detects links within the viewport** (using `IntersectionObsever`)
9-
* **Waits until the browser is idle** (using `requestIdleCallback`)
8+
* **Detects links within the viewport** (using [Intersection Observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API))
9+
* **Waits until the browser is idle** (using [requestIdleCallback](https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback))
1010
* **Checks if the user isn't on a slow connection** (using `navigator.connection.effectiveType`) or has data-saver enabled (using `navigator.connection.saveData`)
11-
* **Prefetches URLs to the links** (using `<link rel=prefetch>` or XHR). Provides some control over the request priority (can switch to `fetch()` if supported).
11+
* **Prefetches URLs to the links** (using [<link rel=prefetch>](https://www.w3.org/TR/resource-hints/#prefetch) or XHR). Provides some control over the request priority (can switch to `fetch()` if supported).
1212

1313
## Installation
1414

0 commit comments

Comments
 (0)