Skip to content
This repository was archived by the owner on Jan 11, 2022. It is now read-only.

Commit ebde97e

Browse files
committed
1.3.0
1 parent 3a55eb9 commit ebde97e

7 files changed

+12
-12
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
"test",
1919
"tests"
2020
],
21-
"version": "1.2.2"
21+
"version": "1.3.0"
2222
}

dist/sticky.compile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
88
* Sticky.js
99
* Library for sticky elements written in vanilla javascript. With this library you can easily set sticky elements on your website. It's also responsive.
1010
*
11-
* @version 1.2.2
11+
* @version 1.3.0
1212
* @author Rafal Galus <[email protected]>
1313
* @website https://rgalus.github.io/sticky-js/
1414
* @repo https://github.com/rgalus/sticky-js
@@ -29,7 +29,7 @@ var Sticky = /*#__PURE__*/function () {
2929

3030
this.selector = selector;
3131
this.elements = [];
32-
this.version = '1.2.2';
32+
this.version = '1.3.0';
3333
this.vp = this.getViewportSize();
3434
this.body = document.querySelector('body');
3535
this.options = {

dist/sticky.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sticky.min.js.gz

0 Bytes
Binary file not shown.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sticky-js",
3-
"version": "1.2.2",
3+
"version": "1.3.0",
44
"description": "Sticky elements",
55
"main": "index.js",
66
"scripts": {

src/sticky.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Sticky.js
44
* Library for sticky elements written in vanilla javascript. With this library you can easily set sticky elements on your website. It's also responsive.
55
*
6-
* @version 1.2.2
6+
* @version 1.3.0
77
* @author Rafal Galus <[email protected]>
88
* @website https://rgalus.github.io/sticky-js/
99
* @repo https://github.com/rgalus/sticky-js
@@ -21,7 +21,7 @@ class Sticky {
2121
this.selector = selector;
2222
this.elements = [];
2323

24-
this.version = '1.2.2';
24+
this.version = '1.3.0';
2525

2626
this.vp = this.getViewportSize();
2727
this.body = document.querySelector('body');

yarn.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ assign-symbols@^1.0.0:
10191019
resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
10201020
integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
10211021

1022-
async-done@^1.2.0, async-done@^1.2.2:
1022+
async-done@^1.2.0, async-done@^1.3.0:
10231023
version "1.3.2"
10241024
resolved "https://registry.yarnpkg.com/async-done/-/async-done-1.3.2.tgz#5e15aa729962a4b07414f528a88cdf18e0b290a2"
10251025
integrity sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==
@@ -1049,7 +1049,7 @@ async-settle@^1.0.0:
10491049
resolved "https://registry.yarnpkg.com/async-settle/-/async-settle-1.0.0.tgz#1d0a914bb02575bec8a8f3a74e5080f72b2c0c6b"
10501050
integrity sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=
10511051
dependencies:
1052-
async-done "^1.2.2"
1052+
async-done "^1.3.0"
10531053

10541054
10551055
version "1.5.2"
@@ -1087,7 +1087,7 @@ bach@^1.0.0:
10871087
array-each "^1.0.0"
10881088
array-initial "^1.0.0"
10891089
array-last "^1.1.1"
1090-
async-done "^1.2.2"
1090+
async-done "^1.3.0"
10911091
async-settle "^1.0.0"
10921092
now-and-later "^2.0.0"
10931093

@@ -3003,8 +3003,8 @@ make-dir@^2.0.0, make-dir@^2.1.0:
30033003
semver "^5.6.0"
30043004

30053005
make-error-cause@^1.1.1:
3006-
version "1.2.2"
3007-
resolved "https://registry.yarnpkg.com/make-error-cause/-/make-error-cause-1.2.2.tgz#df0388fcd0b37816dff0a5fb8108939777dcbc9d"
3006+
version "1.3.0"
3007+
resolved "https://registry.yarnpkg.com/make-error-cause/-/make-error-cause-1.3.0.tgz#df0388fcd0b37816dff0a5fb8108939777dcbc9d"
30083008
integrity sha1-3wOI/NCzeBbf8KX7gQiTl3fcvJ0=
30093009
dependencies:
30103010
make-error "^1.2.0"

0 commit comments

Comments
 (0)