diff --git a/js/angular/controller/scrollController.js b/js/angular/controller/scrollController.js index fbdc58a67f..6cd119004c 100644 --- a/js/angular/controller/scrollController.js +++ b/js/angular/controller/scrollController.js @@ -47,13 +47,14 @@ function($scope, scrollViewOptions, $timeout, $window, $location, $document, $io if (!angular.isDefined(scrollViewOptions.bouncing)) { ionic.Platform.ready(function() { - scrollView.options.bouncing = true; - - if (ionic.Platform.isAndroid()) { - // No bouncing by default on Android - scrollView.options.bouncing = false; - // Faster scroll decel - scrollView.options.deceleration = 0.95; + if (scrollView.options) { + scrollView.options.bouncing = true; + if (ionic.Platform.isAndroid()) { + // No bouncing by default on Android + scrollView.options.bouncing = false; + // Faster scroll decel + scrollView.options.deceleration = 0.95; + } } }); }