shineout 2.0.5-beta.2 → 2.0.5-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/Table/Table.js +1 -1
- package/css/index.js +1 -1
- package/dist/shineout.js +27510 -27511
- package/dist/shineout.js.map +1 -1
- package/dist/shineout.min.js +1 -1
- package/es/Table/Table.js +1 -1
- package/es/index.js +1 -1
- package/lib/Table/Table.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/css/Table/Table.js
CHANGED
|
@@ -98,7 +98,7 @@ function (_Component) {
|
|
|
98
98
|
_proto.componentDidMount = function componentDidMount() {
|
|
99
99
|
var _this2 = this;
|
|
100
100
|
|
|
101
|
-
if (this.props.sticky && this.table &&
|
|
101
|
+
if (this.props.sticky && this.table && window.IntersectionObserver) {
|
|
102
102
|
var observer = new IntersectionObserver(function (entries) {
|
|
103
103
|
var entry = entries[0];
|
|
104
104
|
|