Thanks Sander thats what I just did and it works. I created a new app called startupApp (not using bootstrap just incase it causes issue with the actual js).. It was really bothering me that earlier that app1 would have to have app2 required code.. while not perfect this feels better. Thank you
angular.bootstrap(document, ['startupApp', 'app1','app2']); On Sunday, October 11, 2015 at 1:11:17 AM UTC-7, Sander Elias wrote: > > Hi Dough, > > The only way to do that, is add another module, that works as an holder > module, and bootstrap that. That way you don't need to change your module, > or the already existing module. With future extensions, you only need to > add added modules to this 3rth holder module. > For ng1, that's the only way at the moment. You issue is taken care of in > version 2. (This is one of the creation reasons..) > > Regards > Sander > -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
