@egjs/flicking 4.7.0 → 4.7.1
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/README.md +1 -1
- package/dist/flicking.esm.js +3 -3
- package/dist/flicking.esm.js.map +1 -1
- package/dist/flicking.js +3 -3
- package/dist/flicking.js.map +1 -1
- package/dist/flicking.min.js +2 -2
- package/dist/flicking.min.js.map +1 -1
- package/dist/flicking.pkgd.js +56 -29
- package/dist/flicking.pkgd.js.map +1 -1
- package/dist/flicking.pkgd.min.js +2 -2
- package/dist/flicking.pkgd.min.js.map +1 -1
- package/package.json +2 -2
- package/src/renderer/Renderer.ts +1 -1
package/dist/flicking.js
CHANGED
|
@@ -4,7 +4,7 @@ name: @egjs/flicking
|
|
|
4
4
|
license: MIT
|
|
5
5
|
author: NAVER Corp.
|
|
6
6
|
repository: https://github.com/naver/egjs-flicking
|
|
7
|
-
version: 4.7.
|
|
7
|
+
version: 4.7.1
|
|
8
8
|
*/
|
|
9
9
|
(function (global, factory) {
|
|
10
10
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('@egjs/component'), require('@egjs/axes'), require('@egjs/imready')) :
|
|
@@ -5401,7 +5401,7 @@ version: 4.7.0
|
|
|
5401
5401
|
if (!resizeOnContentsReady || flicking.virtualEnabled) return;
|
|
5402
5402
|
|
|
5403
5403
|
var hasContents = function (panel) {
|
|
5404
|
-
return !!panel.element.querySelector("img, video");
|
|
5404
|
+
return panel.element && !!panel.element.querySelector("img, video");
|
|
5405
5405
|
};
|
|
5406
5406
|
|
|
5407
5407
|
checkingPanels = checkingPanels.filter(function (panel) {
|
|
@@ -8518,7 +8518,7 @@ version: 4.7.0
|
|
|
8518
8518
|
*/
|
|
8519
8519
|
|
|
8520
8520
|
|
|
8521
|
-
Flicking.VERSION = "4.7.
|
|
8521
|
+
Flicking.VERSION = "4.7.1";
|
|
8522
8522
|
return Flicking;
|
|
8523
8523
|
}(Component);
|
|
8524
8524
|
|