Hi, how to add an additional block with horizontal scrolling to the main vertical scroll so that it works separately, but it scrolls basically ``` <div id="wrapper"> <div id="scroller"> <div id="wrapper_horizontal_slider"> <div id="scroller_horizontal_slider"></div> </div> </div> </div> ``` ``` var scrollerConfig = { pullToRefresh : true, onPullToRefresh : ptr, }; wrapper = new Scroller('#wrapper', scrollerConfig); var scrollerConfigslider = { scroll : 'horizontal' }; wrapperotherslider = new Scroller('#wrapper_horizontal_slider', scrollerConfigslider); ```
Hi, how to add an additional block with horizontal scrolling to the main vertical scroll so that it works separately, but it scrolls basically