intersection-observer 0.12.1 → 0.12.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +2 -0
- package/package.json +8 -8
package/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
**⚠️ This polyfill was originally hosted in the [IntersectionObserver spec](https://github.com/w3c/IntersectionObserver) repo. Refer to that repo for commit history.**
|
2
|
+
|
1
3
|
# `IntersectionObserver` polyfill
|
2
4
|
|
3
5
|
This library polyfills the native [`IntersectionObserver`](http://w3c.github.io/IntersectionObserver/) API in unsupporting browsers. See the [API documentation](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) for usage information.
|
package/package.json
CHANGED
@@ -1,23 +1,23 @@
|
|
1
1
|
{
|
2
2
|
"name": "intersection-observer",
|
3
|
-
"version": "0.12.
|
3
|
+
"version": "0.12.2",
|
4
4
|
"description": "A polyfill for IntersectionObserver",
|
5
|
-
"main": "intersection-observer.js",
|
6
|
-
"repository": {
|
7
|
-
"type": "git",
|
8
|
-
"url": "git@github.com:w3c/IntersectionObserver.git"
|
9
|
-
},
|
10
5
|
"keywords": [
|
11
6
|
"Intersection",
|
12
7
|
"Observer"
|
13
8
|
],
|
9
|
+
"main": "intersection-observer.js",
|
14
10
|
"author": {
|
15
11
|
"name": "Philip Walton",
|
16
12
|
"email": "philip@philipwalton.com",
|
17
13
|
"url": "http://philipwalton.com"
|
18
14
|
},
|
19
|
-
"license": "
|
15
|
+
"license": "Apache-2.0",
|
16
|
+
"repository": {
|
17
|
+
"type": "git",
|
18
|
+
"url": "https://github.com/GoogleChromeLabs/intersection-observer.git"
|
19
|
+
},
|
20
20
|
"bugs": {
|
21
|
-
"url": "https://github.com/
|
21
|
+
"url": "https://github.com/GoogleChromeLabs/intersection-observer/issues"
|
22
22
|
}
|
23
23
|
}
|