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
{{ message }}
This repository was archived by the owner on May 29, 2019. It is now read-only.
When I tried to use this as nested tabset I get this error.
TypeError: Cannot read property '$parent' of undefined
But when i tried to modify the code by setting a timeout for tabsetTitles directive in the link method I got one nested tabset but not more than one.
The new function become like this:
function(scope,elm,attrs,tabsetCtrl){if(!scope.$eval(attrs.tabsetTitles)){elm.remove();}else{//now that tabs location has been decided, transclude the tab titles in$timeout(function(){tabsetCtrl.$transcludeFn(tabsetCtrl.$scope.$parent,function(node){elm.append(node);});});}}
But using this way the tests start to fail.
So, what is the best way to implement nested tabsets.
The text was updated successfully, but these errors were encountered:
@MortadaAK Thx for the report but this is a duplicate of #783. It is a know bug since 0.5.
If you are willing to investigate this further and submit a PR with a solution, would be awesome.
When I tried to use this as nested tabset I get this error.
TypeError: Cannot read property '$parent' of undefined
But when i tried to modify the code by setting a timeout for tabsetTitles directive in the link method I got one nested tabset but not more than one.
The new function become like this:
But using this way the tests start to fail.
So, what is the best way to implement nested tabsets.
The text was updated successfully, but these errors were encountered: