I believe Scoller is used within Ionic to provide a scrollable div (please correct me if Im wrong!).
How do I gain access to the Scroller functionality, specifically getValues() and scrollTo()?
Thanks,
Greg
I believe Scoller is used within Ionic to provide a scrollable div (please correct me if Im wrong!).
How do I gain access to the Scroller functionality, specifically getValues() and scrollTo()?
Thanks,
Greg
This has been fixed: https://github.com/driftyco/ionic/issues/458#issuecomment-33097781.
The one caveat is to wait until the linking function for <content> has been called.
$scope.scrollDown = function(){
var sv = $ionicScrollDelegate.getScrollView($scope);
var top = sv.getScrollMax().top;
sv.scrollTo(null, top, true, null);
}