PluginProbe
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News / 2.2.10
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News v2.2.10
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 2.3.5 2.3.6 2.4.0 2.4.1 2.4.10 2.4.11 2.4.12 2.4.13 2.4.14 2.4.15 2.4.16 2.4.17 2.4.18 2.4.19 2.4.2 2.4.20 2.4.21 All 88 releases
← All changes | public/assets/js/scripts.js +13 -13 2.4.15 → 2.2.10 View file →
@@ -117,22 +117,22 @@
117 117 if (pcpCarouselData.autoplay === false) {
118 118 pcpSwiper.autoplay.stop()
119 119 }
120 120 if (pcpCarouselData.stop_onHover && pcpCarouselData.autoplay) {
121 - $(pcpCarousel).on({
122 - mouseenter: function () {
123 - pcpSwiper.autoplay.stop();
124 - },
125 - mouseleave: function () {
126 - pcpSwiper.autoplay.start();
127 - }
128 - });
121 + $(pcpCarousel).hover(
122 + function () {
123 + pcpSwiper.autoplay.stop()
124 + },
125 + function () {
126 + pcpSwiper.autoplay.start()
127 + }
128 + )
129 + }
130 + $(window).resize(function () {
131 + pcpSwiper.update()
132 + })
133 + $(window).trigger("resize")
129 134 }
130 - $(window).on('resize', function () {
131 - pcpSwiper.update()
132 - })
133 - $(window).trigger("resize")
134 - }
135 135
136 136 /**
137 137 * Grid masonry.
138 138 */