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

Commit

Permalink
1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rgalus committed Oct 12, 2016
1 parent 64f27d0 commit 3571251
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Sticky-js is a library for sticky elements written in vanilla javascript. With t
## Features

- Written in vanilla javascript, no dependencies needed
- Lightweight (minified: ~4.68kb, gzipped: ~1.40kb)
- Lightweight (minified: ~4.75kb, gzipped: ~1.41kb)
- It can be sticky to the entire page or to selected parent container
- No additional CSS needed

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"test",
"tests"
],
"version": "1.1.3"
"version": "1.1.4"
}
4 changes: 2 additions & 2 deletions dist/sticky.compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
* Sticky.js
* Library for sticky elements written in vanilla javascript. With this library you can easily set sticky elements on your website. It's also responsive.
*
* @version 1.1.3
* @version 1.1.4
* @author Rafal Galus <[email protected]>
* @website https://rgalus.github.io/sticky-js/
* @repo https://github.com/rgalus/sticky-js
Expand All @@ -27,7 +27,7 @@ var Sticky = function () {
this.selector = selector;
this.elements = [];

this.version = '1.1.3';
this.version = '1.1.4';

this.vp = this.getViewportSize();
this.scrollTop = this.getScrollTopPosition();
Expand Down
2 changes: 1 addition & 1 deletion dist/sticky.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified dist/sticky.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sticky-js",
"version": "1.1.3",
"version": "1.1.4",
"description": "Sticky elements",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/sticky.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Sticky.js
* Library for sticky elements written in vanilla javascript. With this library you can easily set sticky elements on your website. It's also responsive.
*
* @version 1.1.3
* @version 1.1.4
* @author Rafal Galus <[email protected]>
* @website https://rgalus.github.io/sticky-js/
* @repo https://github.com/rgalus/sticky-js
Expand All @@ -21,7 +21,7 @@ class Sticky {
this.selector = selector;
this.elements = [];

this.version = '1.1.3';
this.version = '1.1.4';

this.vp = this.getViewportSize();
this.scrollTop = this.getScrollTopPosition();
Expand Down

0 comments on commit 3571251

Please sign in to comment.