Skip to content

Commit e7fc9b7

Browse files
committed
3.10.2
- IMPROVED: you can call a ScrollSmoother's .effects() method and omit the config object if you want it to just pull from the data attributes. - FIXED: ScrollSmoother could show a warning in the console in browsers that don't support overscroll-behavior (like Safari). - FIXED: if you load ScrollTrigger or Observer AFTER you load GSAP in the <head> (all loaded BEFORE the <body> exists), it would throw an error. See https://greensock.com/forums/topic/31624-cannot-load-register-scrolltrigger-3100-or-3101/
1 parent 6e2c8d4 commit e7fc9b7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+133
-133
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ View the <a href="https://greensock.com/docs">full documentation here</a>, inclu
1818

1919
### CDN
2020
```html
21-
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.1/gsap.min.js"></script>
21+
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.2/gsap.min.js"></script>
2222
```
2323
Click the green "Get GSAP Now" button at <a href="https://greensock.com/?download=GSAP-JS">greensock.com</a> for more options and installation instructions, including CDN URLs for various plugins.
2424

dist/CSSRulePlugin.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
}(this, (function (exports) { 'use strict';
66

77
/*!
8-
* CSSRulePlugin 3.10.1
8+
* CSSRulePlugin 3.10.2
99
* https://greensock.com
1010
*
1111
* @license Copyright 2008-2022, GreenSock. All rights reserved.
@@ -51,7 +51,7 @@
5151
};
5252

5353
var CSSRulePlugin = {
54-
version: "3.10.1",
54+
version: "3.10.2",
5555
name: "cssRule",
5656
init: function init(target, value, tween, index, targets) {
5757
if (!_checkRegister() || typeof target.cssText === "undefined") {

dist/CSSRulePlugin.min.js

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

dist/CSSRulePlugin.min.js.map

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

dist/CustomEase.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@
355355
}
356356

357357
/*!
358-
* CustomEase 3.10.1
358+
* CustomEase 3.10.2
359359
* https://greensock.com
360360
*
361361
* @license Copyright 2008-2022, GreenSock. All rights reserved.
@@ -704,7 +704,7 @@
704704
return CustomEase;
705705
}();
706706
_getGSAP() && gsap.registerPlugin(CustomEase);
707-
CustomEase.version = "3.10.1";
707+
CustomEase.version = "3.10.2";
708708

709709
exports.CustomEase = CustomEase;
710710
exports.default = CustomEase;

0 commit comments

Comments
 (0)