javascript - Material Design Lite Integration with AngularJS -
i aware of angular material helps implement material design specification use in angular single-page applications.
i'm taking @ material design lite alternative integrate angular project. know best way go integrating material design lite , angularjs app.
emjay's second answer worked me. can additionally reduce boilerplate tossing upgradeallregistered
method angular's run
block:
angular.module('app', []) .run(function ($rootscope,$timeout) { $rootscope.$on('$viewcontentloaded', ()=> { $timeout(() => { componenthandler.upgradeallregistered(); }) }) });
Comments
Post a Comment