I have a problem... My Materialize dropdown works only after a reloading of my homepage. I tried all the solutions which I was able to find. Nothing can be done.
Here is my code :
this.$postLink = () => {
$timeout(() => {
$('.dropdown-button').dropdown();
}, 1000);
};
<li ng-if="$ctrl.parent.isLogged()">
<a class="dropdown-button" href data-activates="menu_user">
{{'NAVBAR.HELLO' | translate}} {{$ctrl.parent.userName()}}
<i class="material-icons right">arrow_drop_down</i>
</a>
</li>
Thanks for your help ;) !