Skip to content

Commit 778a709

Browse files
committed
corrected version no
1 parent aae9253 commit 778a709

14 files changed

+24
-24
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you want to contribute please [get in touch](http://www.janpaepke.de) and let
1919

2020
---
2121

22-
# ScrollMagic <a href='https://github.com/janpaepke/ScrollMagic/blob/master/CHANGELOG.md' class='version' title='Whats New?'>v2.0.7</a> [![Build Status](https://api.travis-ci.org/janpaepke/ScrollMagic.svg?branch=master)](https://travis-ci.org/janpaepke/ScrollMagic)
22+
# ScrollMagic <a href='https://github.com/janpaepke/ScrollMagic/blob/master/CHANGELOG.md' class='version' title='Whats New?'>v2.0.6</a> [![Build Status](https://api.travis-ci.org/janpaepke/ScrollMagic.svg?branch=master)](https://travis-ci.org/janpaepke/ScrollMagic)
2323

2424
### The javascript library for magical scroll interactions. [![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif "Shut up and take my money!")](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8BJC8B58XHKLL "Shut up and take my money!")
2525

@@ -96,15 +96,15 @@ __Option 4: CDN__
9696
If you don't want to host ScrollMagic yourself, you can include it from [cdnjs](https://cdnjs.com/libraries/ScrollMagic):
9797

9898
```
99-
http://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js
99+
http://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/ScrollMagic.min.js
100100
```
101101

102102
All plugins and uncompressed files are also available on cdnjs.
103103
For example:
104104

105105
```
106-
http://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/debug.addIndicators.js
107-
http://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/debug.addIndicators.min.js
106+
http://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/plugins/debug.addIndicators.js
107+
http://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/plugins/debug.addIndicators.min.js
108108
```
109109

110110
## Installation

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scrollmagic",
3-
"version": "2.0.7",
3+
"version": "2.0.6",
44
"description": "The javascript library for magical scroll interactions.",
55
"homepage": "http://ScrollMagic.io",
66
"repository": {

dev/build/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.7",
2+
"version": "2.0.6",
33
"lastupdate": "2018-10-08",
44
"info": {
55
"description": "The javascript library for magical scroll interactions.",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "scrollmagic",
33
"title": "ScrollMagic",
4-
"version": "2.0.7",
4+
"version": "2.0.6",
55
"description": "The javascript library for magical scroll interactions.",
66
"author": {
77
"name": "Jan Paepke",

scrollmagic/minified/ScrollMagic.min.js

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

scrollmagic/minified/plugins/animation.gsap.min.js

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

scrollmagic/minified/plugins/animation.velocity.min.js

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

scrollmagic/minified/plugins/debug.addIndicators.min.js

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

scrollmagic/minified/plugins/jquery.ScrollMagic.min.js

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

scrollmagic/uncompressed/ScrollMagic.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*!
2-
* ScrollMagic v2.0.7 (2018-10-08)
2+
* ScrollMagic v2.0.6 (2018-10-08)
33
* The javascript library for magical scroll interactions.
44
* (c) 2018 Jan Paepke (@janpaepke)
55
* Project Website: http://scrollmagic.io
66
*
7-
* @version 2.0.7
7+
* @version 2.0.6
88
* @license Dual licensed under MIT license and GPL.
99
* @author Jan Paepke - [email protected]
1010
*
@@ -31,7 +31,7 @@
3131
_util.log(2, '(COMPATIBILITY NOTICE) -> As of ScrollMagic 2.0.0 you need to use \'new ScrollMagic.Controller()\' to create a new controller instance. Use \'new ScrollMagic.Scene()\' to instance a scene.');
3232
};
3333

34-
ScrollMagic.version = "2.0.7";
34+
ScrollMagic.version = "2.0.6";
3535

3636
// TODO: temporary workaround for chrome's scroll jitter bug
3737
window.addEventListener("mousewheel", function () {});

scrollmagic/uncompressed/plugins/animation.gsap.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*!
2-
* ScrollMagic v2.0.7 (2018-10-08)
2+
* ScrollMagic v2.0.6 (2018-10-08)
33
* The javascript library for magical scroll interactions.
44
* (c) 2018 Jan Paepke (@janpaepke)
55
* Project Website: http://scrollmagic.io
66
*
7-
* @version 2.0.7
7+
* @version 2.0.6
88
* @license Dual licensed under MIT license and GPL.
99
* @author Jan Paepke - [email protected]
1010
*

scrollmagic/uncompressed/plugins/animation.velocity.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*!
2-
* ScrollMagic v2.0.7 (2018-10-08)
2+
* ScrollMagic v2.0.6 (2018-10-08)
33
* The javascript library for magical scroll interactions.
44
* (c) 2018 Jan Paepke (@janpaepke)
55
* Project Website: http://scrollmagic.io
66
*
7-
* @version 2.0.7
7+
* @version 2.0.6
88
* @license Dual licensed under MIT license and GPL.
99
* @author Jan Paepke - [email protected]
1010
*

scrollmagic/uncompressed/plugins/debug.addIndicators.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*!
2-
* ScrollMagic v2.0.7 (2018-10-08)
2+
* ScrollMagic v2.0.6 (2018-10-08)
33
* The javascript library for magical scroll interactions.
44
* (c) 2018 Jan Paepke (@janpaepke)
55
* Project Website: http://scrollmagic.io
66
*
7-
* @version 2.0.7
7+
* @version 2.0.6
88
* @license Dual licensed under MIT license and GPL.
99
* @author Jan Paepke - [email protected]
1010
*

scrollmagic/uncompressed/plugins/jquery.ScrollMagic.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*!
2-
* ScrollMagic v2.0.7 (2018-10-08)
2+
* ScrollMagic v2.0.6 (2018-10-08)
33
* The javascript library for magical scroll interactions.
44
* (c) 2018 Jan Paepke (@janpaepke)
55
* Project Website: http://scrollmagic.io
66
*
7-
* @version 2.0.7
7+
* @version 2.0.6
88
* @license Dual licensed under MIT license and GPL.
99
* @author Jan Paepke - [email protected]
1010
*

0 commit comments

Comments
 (0)