jshint fixes

This commit is contained in:
Adam Bradley
2013-12-14 21:47:07 -06:00
parent ab13275a75
commit 29945da8f7
2 changed files with 3 additions and 3 deletions

View File

@@ -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) {

View File

@@ -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) {