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
On further analysis it seems that if I add the code
`
var rootElement = angular.element(document);
angular.module(innerModuleName).provider({
$rootElement:function() {
this.$get = function() {
return rootElement;
};
}
});
`
to line 39 of NgTemplatePlus.js the problem is resolved.
Creating a component using angular material and adding the appropriate @javascript annotations I get:
angular.module('taskViewModule',['ngSanitize','ngMaterial']) causes
SEVERE: Error sending state change eventscom.google.gwt.event.shared.UmbrellaException: Exception caught: (Error) : [$injector:unpr] http://errors.angularjs.org/1.5.5/$injector/unpr?p0=%24rootElementProvider%…eQueue%20%3C-%20%24animate%20%3C-%20%24compile%20%3C-%20%24%24animateQueue
when I take away 'ngMaterial' it works.
The text was updated successfully, but these errors were encountered: