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
Since old project habits, now it is like this <ul class="nav nav-tabs"> <li ng-repeat="x in vm.tabs" ng-click="vm.checkOneTab(x,$index)" ng-class="{active:vm.index == $index}"> <a class="text-center" href="" data-toggle="tab">{{x.name}}</a> </li> </ul>
then I wrap it with but nothing happen, no error hint...
could anyone help? or what should i do can fix this?
The text was updated successfully, but these errors were encountered:
var tabScope = angular.element(tab).isolateScope(); //push new field to use as title in the drop down. tabScope.tabScrollTitle = heading ? heading : tab.textContent.trim();
the tabScope is undefined.so the browser report an error 'Cannot set property 'tabScrollTitle' of undefined' How could i can fix this?!
Since old project habits, now it is like this
<ul class="nav nav-tabs"> <li ng-repeat="x in vm.tabs" ng-click="vm.checkOneTab(x,$index)" ng-class="{active:vm.index == $index}"> <a class="text-center" href="" data-toggle="tab">{{x.name}}</a> </li> </ul>
then I wrap it with but nothing happen, no error hint...
could anyone help? or what should i do can fix this?
The text was updated successfully, but these errors were encountered: