diff --git a/js/ext/angular/src/directive/ionicContent.js b/js/ext/angular/src/directive/ionicContent.js index 59ec70dc7c..dd1af4fece 100644 --- a/js/ext/angular/src/directive/ionicContent.js +++ b/js/ext/angular/src/directive/ionicContent.js @@ -89,7 +89,7 @@ angular.module('ionic.ui.content', []) el: $element[0], scrollbarX: $scope.$eval($scope.scrollbarX) !== false, scrollbarY: $scope.$eval($scope.scrollbarY) !== false, - scrollingX: $scope.$eval($scope.hasScrollX) == true, + scrollingX: $scope.$eval($scope.hasScrollX) === true, scrollingY: $scope.$eval($scope.hasScrollY) !== false, scrollEventInterval: parseInt($scope.scrollEventInterval, 10) || 20, scrollingComplete: function() { @@ -126,7 +126,7 @@ angular.module('ionic.ui.content', []) // Run the resize after this digest $timeout(function() { sv && sv.resize(); - }) + }); }); $scope.$parent.$on('scroll.refreshComplete', function(e) { diff --git a/js/ext/angular/src/directive/ionicScroll.js b/js/ext/angular/src/directive/ionicScroll.js index fddda8f53d..497d20adad 100644 --- a/js/ext/angular/src/directive/ionicScroll.js +++ b/js/ext/angular/src/directive/ionicScroll.js @@ -86,7 +86,7 @@ angular.module('ionic.ui.scroll', []) // Run the resize after this digest $timeout(function() { sv && sv.resize(); - }) + }); }); $scope.$parent.$on('scroll.refreshComplete', function(e) {