If overflow-scroll=true
is enabled on my ion-content
container
$scope.scrollDown = function(){
$ionicScrollDelegate.$getByHandle('myScroll').scrollTo(0, window.innerHeight, true);
}
This function no longer works. Wondering if there isa work aroudn to programmaically scroll while overflow-scroll=true
?