You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use some views and subviews (a tab bar inside other tab bar), and the first one has an and then a subview with a inside.
But the scrolling one does not enable scroll because of this test at ionContent directive:
if ($scope.scroll === "false") { <---- here $scope.scroll is false due to first ioncontent
//do nothing
} else if(attr.overflowScroll === "true") {
$element.addClass('overflow-scroll');
}
It can be fixed changing the test to if (attr.scroll === "false")...
The text was updated successfully, but these errors were encountered:
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.
I use some views and subviews (a tab bar inside other tab bar), and the first one has an and then a subview with a inside.
But the scrolling one does not enable scroll because of this test at ionContent directive:
if ($scope.scroll === "false") { <---- here $scope.scroll is false due to first ioncontent
//do nothing
} else if(attr.overflowScroll === "true") {
$element.addClass('overflow-scroll');
}
It can be fixed changing the test to if (attr.scroll === "false")...
The text was updated successfully, but these errors were encountered: