Fixed scroll end thing

This commit is contained in:
Max Lynch
2013-10-28 10:42:59 -05:00
parent 9afb405b77
commit a3edee2ff9
3 changed files with 14 additions and 4 deletions

View File

@ -571,6 +571,13 @@
}
_this.scrollTo(newX, newY, time, easing);
} else {
// We are done
ionic.trigger(_this.scrollEndEventName, {
target: _this.el,
scrollLeft: _this.x,
scrollTop: _this.y
});
}
});
}