Skip to content

Commit

Permalink
3.10.2
Browse files Browse the repository at this point in the history
- 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/
  • Loading branch information
jackdoyle committed Mar 31, 2022
1 parent 6e2c8d4 commit e7fc9b7
Show file tree
Hide file tree
Showing 76 changed files with 133 additions and 133 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ View the <a href="https://greensock.com/docs">full documentation here</a>, inclu

### CDN
```html
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.2/gsap.min.js"></script>
```
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.

Expand Down
4 changes: 2 additions & 2 deletions dist/CSSRulePlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
}(this, (function (exports) { 'use strict';

/*!
* CSSRulePlugin 3.10.1
* CSSRulePlugin 3.10.2
* https://greensock.com
*
* @license Copyright 2008-2022, GreenSock. All rights reserved.
Expand Down Expand Up @@ -51,7 +51,7 @@
};

var CSSRulePlugin = {
version: "3.10.1",
version: "3.10.2",
name: "cssRule",
init: function init(target, value, tween, index, targets) {
if (!_checkRegister() || typeof target.cssText === "undefined") {
Expand Down
4 changes: 2 additions & 2 deletions dist/CSSRulePlugin.min.js

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

2 changes: 1 addition & 1 deletion dist/CSSRulePlugin.min.js.map

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

4 changes: 2 additions & 2 deletions dist/CustomEase.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@
}

/*!
* CustomEase 3.10.1
* CustomEase 3.10.2
* https://greensock.com
*
* @license Copyright 2008-2022, GreenSock. All rights reserved.
Expand Down Expand Up @@ -704,7 +704,7 @@
return CustomEase;
}();
_getGSAP() && gsap.registerPlugin(CustomEase);
CustomEase.version = "3.10.1";
CustomEase.version = "3.10.2";

exports.CustomEase = CustomEase;
exports.default = CustomEase;
Expand Down
Loading

0 comments on commit e7fc9b7

Please sign in to comment.