Skip to content

Commit 26dd152

Browse files
committed
ScrollReveal v4.0.3
1 parent e9694e3 commit 26dd152

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [4.0.3] - 2018-09-21
4+
5+
### Fixed
6+
7+
`options.cleanup` is now correctly set to `false` by default. [#457](https://github.com/scrollreveal/scrollreveal/issues/457)
8+
39
## [4.0.2] - 2018-09-11
410

511
### Fixed
@@ -475,6 +481,7 @@ This version marks a significant change in how developers use ScrollReveal, intr
475481

476482
### Hello World
477483

484+
[4.0.3]: https://github.com/scrollreveal/scrollreveal/compare/v4.0.2...v4.0.3
478485
[4.0.2]: https://github.com/scrollreveal/scrollreveal/compare/v4.0.1...v4.0.2
479486
[4.0.1]: https://github.com/scrollreveal/scrollreveal/compare/v4.0.0...v4.0.1
480487
[4.0.0]: https://github.com/scrollreveal/scrollreveal/compare/v3.3.6...v4.0.0

dist/scrollreveal.es.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license ScrollReveal v4.0.2
1+
/*! @license ScrollReveal v4.0.3
22
33
Copyright 2018 Fisssion LLC.
44
@@ -27,7 +27,7 @@ var defaults = {
2727
z: 0
2828
},
2929
scale: 1,
30-
cleanup: true,
30+
cleanup: false,
3131
container: document.documentElement,
3232
desktop: true,
3333
mobile: true,
@@ -1067,7 +1067,7 @@ function transitionSupported() {
10671067
return 'transition' in style || 'WebkitTransition' in style
10681068
}
10691069

1070-
var version = "4.0.2";
1070+
var version = "4.0.3";
10711071

10721072
var boundDelegate;
10731073
var boundDestroy;

dist/scrollreveal.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license ScrollReveal v4.0.2
1+
/*! @license ScrollReveal v4.0.3
22
33
Copyright 2018 Fisssion LLC.
44
@@ -29,7 +29,7 @@ var defaults = {
2929
z: 0
3030
},
3131
scale: 1,
32-
cleanup: true,
32+
cleanup: false,
3333
container: document.documentElement,
3434
desktop: true,
3535
mobile: true,
@@ -1442,7 +1442,7 @@ function transitionSupported() {
14421442
return 'transition' in style || 'WebkitTransition' in style
14431443
}
14441444

1445-
var version = "4.0.2";
1445+
var version = "4.0.3";
14461446

14471447
var boundDelegate;
14481448
var boundDestroy;

dist/scrollreveal.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scrollreveal",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "Animate elements as they scroll into view",
55
"homepage": "https://scrollrevealjs.org",
66
"main": "dist/scrollreveal.js",

0 commit comments

Comments
 (0)