At the moment, I am using a variable called isNotMobileView
passed to the template from the controller as $scope.isNotMobileView
:
<uib-tabset active="0" vertical="isNotMobileView">
<uib-tab index="0" heading="foo">
...
</uib-tab>
...
</uib-tabset>
However, this method does not dynamically adjust the displayed content within the uib-tabset
when changing orientation or screen size. How can I achieve this? (I'm looking for a similar behavior as the hidden-xs
elements in Twitter Bootstrap that hide and modify elements based on screen size) I don't want to duplicate the uib-tabset
as it would impact maintainability.