9 lines
		
	
	
		
			386 B
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			386 B
		
	
	
	
		
			JavaScript
		
	
	
| export const updateOnVirtualData = swiper => {
 | |
|   if (!swiper || swiper.destroyed || !swiper.params.virtual || swiper.params.virtual && !swiper.params.virtual.enabled) return;
 | |
|   swiper.updateSlides();
 | |
|   swiper.updateProgress();
 | |
|   swiper.updateSlidesClasses();
 | |
|   if (swiper.parallax && swiper.params.parallax && swiper.params.parallax.enabled) {
 | |
|     swiper.parallax.setTranslate();
 | |
|   }
 | |
| }; |