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
I found this
then i had debug(trace) line by line,
finally, i find out the reason in
/**
* AngularJS hack - This way we can get and decorate all custom directives
* in order to broadcast a custom $directiveAdd event
**/
because the statement $directives.push({ ddo: directive, handled: false }); in module.directive and module.component occur after angular.forEach($directives, function ($dir) { which in module.config(['$provide','$injector'
MAY BE the truly reason is: angular-async-loader and angular-css is conflict ???
By the way, in this porject we using RequireJS and AngularJS together, by angular-async-loader...
The text was updated successfully, but these errors were encountered:
I found this
then i had debug(trace) line by line,
finally, i find out the reason in
because the statement
$directives.push({ ddo: directive, handled: false });
inmodule.directive
andmodule.component
occur afterangular.forEach($directives, function ($dir) {
which inmodule.config(['$provide','$injector'
MAY BE the truly reason is: angular-async-loader and angular-css is conflict ???
By the way, in this porject we using RequireJS and AngularJS together, by angular-async-loader...
The text was updated successfully, but these errors were encountered: