This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Extends Webflow Slider with public methods to swich between slides | |
* | |
* Paste this code on the Custom Code panel to get started: | |
* | |
* var slider = new W_SLIDER_CONTROLLER( '#element_id' ); | |
* slider.setup('drag_disabled') // removes the drag-and-slide interaction | |
* slider.goto( 2 ); // jumps to the second slide | |
*/ | |
var W_SLIDER_CONTROLLER = function( el ){ |
