When a scrollview has a scrollview as parent,
block the parent's scroll events.
Change-Id: I9fcfab68e62cc53910a7f9701a463053968751c2
return { x: -this._sx, y: -this._sy };
},
+ skipDragging: function ( value ) {
+ this._skip_dragging = value;
+ },
+
_getScrollHierarchy: function () {
var svh = [],
d;
this._didDrag = true;
this._showScrollBars();
this._showOverflowIndicator();
+
+ this._$clip.parents(".ui-scrollview-clip").each( function () {
+ $( this ).scrollview( "skipDragging", true );
+ } );
}
},