Hello, I want to use more than one module in my TodoList,
var app = angular.module("TodoList",["ngMaterial"]) // this is working
if I do this it works but when I add a firebase module or any other in addition, my Material module doesn't load
can anyone tell me why its happening?
var topmodule= angular.module('and then in your html use:topmodule', ['firstmudule', 'secondmudule']);ng-app="topmodule"
--
You received this message because you are subscribed to the Google Groups "AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to angular+u...@googlegroups.com.
To post to this group, send email to ang...@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.
var topmodule= angular.module('and then in your html use:topmodule', ['firstmudule', 'secondmudule']);ng-app="topmodule"
I know I can't use multiple, I am trying to say that when I add two dependency in a single module like this,var topmodule= angular.module('topmodule', ['firstmudule', 'secondmudule']);
my code doesnt work or you can say these module doesnt load.--
You received this message because you are subscribed to a topic in the Google Groups "AngularJS" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/angular/YTt25DMF7HQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to angular+u...@googlegroups.com.
To post to this group, send email to ang...@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.