I am trying to use native scrolling like this:
angular.module('MyApp').config(function ($translateProvider,$ionicConfigProvider) {
$translateProvider.preferredLanguage('en');
$translateProvider.useStaticFilesLoader({
prefix: 'languages/',
suffix: '.json'
});
if(!ionic.Platform.isIOS())$ionicConfigProvider.scrolling.jsScrolling(false);
})
the issue that my scrolling stop working at all very similar to: code pen
my template:
<div class="list">
<a ng-repeat="item in items" class="item card"
href="#/tab/details/{{item.queId}}">
<div class="row">....
thanks For helping!
after looking on it looks that the issue happens only on chrome....
Your codepen scrolls fine without this line:
if(!ionic.Platform.isIOS())$ionicConfigProvider.scrolling.jsScrolling(false);
Why are you disabling the scroll in non iOS platforms with this code?