I'm using $anchorscroll in my ionic application, on Android it works fine but on iOS my content gets stuck after scrolling, I can't scroll up anymore.
I tried using overflow-scroll="true", but this doesn't work either in my application...
Can someone help me with this one please?
function scrollTo() {
console.log("scroll to: " + $stateParams.id);
var anchor = '';
if($stateParams.id === '') {
console.log("empty");
anchor = "birthday-test";
} else {
console.log("not empty");
var employee_id = $stateParams.id;
anchor = "birthday-" + employee_id;
}
console.log("anchor : " + anchor);
$location.hash(anchor);
$anchorScroll();
}