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 has been archived by the owner on Sep 5, 2024. It is now read-only.
With Angular 1.4.x ngIf began to work as expected, and this lead to the following issue with md-tabs.
Consider the following CodePen as an example: http://codepen.io/anon/pen/PqXGKB
When you switch between tabs, you can see that in console many new messages 'I am created!' are written, thus many scopes are created, too. But none of them are destroyed.
The fix is relatively simple: you should change ng-if to ng-show in /src/components/tabs/js/tabsDirective.js:193. This will return the old behavior.
The text was updated successfully, but these errors were encountered:
With Angular 1.4.x ngIf began to work as expected, and this lead to the following issue with md-tabs.
Consider the following CodePen as an example: http://codepen.io/anon/pen/PqXGKB
When you switch between tabs, you can see that in console many new messages 'I am created!' are written, thus many scopes are created, too. But none of them are destroyed.
The fix is relatively simple: you should change ng-if to ng-show in
/src/components/tabs/js/tabsDirective.js:193
. This will return the old behavior.The text was updated successfully, but these errors were encountered: