Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/ext/angular/src/directive/ionicContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function($parse, $timeout, $ionicScrollDelegate, $controller, $ionicBind) {
// Check if this supports infinite scrolling and listen for scroll events
// to trigger the infinite scrolling
// TODO(ajoslin): move functionality out of this function and make testable
var infiniteScroll = $element.find('infinite-scroll');
var infiniteScroll = $element.find('ion-infinite-scroll');
var infiniteStarted = false;
if(infiniteScroll) {
// Parse infinite scroll distance
Expand Down
4 changes: 2 additions & 2 deletions scss/_scaffolding.scss
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ body.grade-c {
}

// Infinite scroll
infinite-scroll .scroll-infinite {
ion-infinite-scroll .scroll-infinite {
position: relative;
overflow: hidden;
margin-top: -70px;
Expand All @@ -247,7 +247,7 @@ infinite-scroll .scroll-infinite {
text-align: center;
font-size: 30px; }

infinite-scroll.active .scroll-infinite {
ion-infinite-scroll.active .scroll-infinite {
margin-top: -30px;
}

Expand Down