jshint fixes

This commit is contained in:
Adam Bradley
2013-12-07 15:05:56 -06:00
parent bad322d2da
commit 3cfcfc01a4
14 changed files with 47 additions and 47 deletions

View File

@@ -52,7 +52,7 @@ function findViewportAndContent(startElement){
break;
}
}
if( n == null ){
if( n === null ){
// That element should work as a viewport.
return {
viewport: angular.element(e),
@@ -320,7 +320,7 @@ angular.module('ionic.ui.virtualRepeat', [])
// The watch on the collection is just a watch on the length of the
// collection. We don't care if the content changes.
scope.$watch(sfVirtualRepeatWatchExpression, sfVirtualRepeatListener, true);
}
};
}
};
}]);