fix(headerBar): tap to scroll to top only on the nearest scrollview

Closes #1329
This commit is contained in:
Andrew Joslin
2014-05-12 09:49:43 -06:00
parent 3fede13c94
commit 58c97e0d2e

View File

@@ -98,7 +98,8 @@ function tapScrollToTopDirective() {
bounds.left, bounds.top - 20,
bounds.left + bounds.width, bounds.top + bounds.height
)) {
$ionicScrollDelegate.scrollTop(true);
var scrollCtrl = $element.controller('$ionicScroll');
scrollCtrl && scrollCtrl.scrollTop(true);
}
}
}