Native scrolling not working on ionic

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: codepen

thanks For helping!