I have a question about an issue I am facing with my Angular Bootstrap UI implementation.
Here is the code snippet:
<div class="container" ng-controller='sCtrl'>
<tabset id='tabs'>
<tab heading="Title1">
</tab>
<tab heading="Title2" active ="true">
</tab>
<tab heading="Title3">
</tab>
</tabset>
</div>
The problem arises whenever I add active='true'
to a tab, resulting in the following error:
TypeError: undefined is not a function
at Object.fn (http://test.com/lib/ui-bootstrap-tpls-0.10.0.js:2762:11)
at h.$digest (http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js:106:71)
at h.$apply (http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js:108:370)
at g (http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js:71:120)
at C (http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js:75:241)
at XMLHttpRequest.y.onreadystatechange (http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js:76:280)
Despite trying to adjust the jQuery loading order, the error persists. Can anyone provide guidance on resolving this issue? Many thanks!