Chris Gross

Results 72 comments of Chris Gross

I have no idea what sense it would make to have a random html file created when you create a module. If you want a partial, create one in the...

Have you tried the partial generator? That creates routes and controllers for you. For modules, there is something I'm working on. Glad you like the generator :)

@tacone Thanks! @uwascan The generator is just an npm module. Do an `npm update -g generator-cg-angular` to update it.

Yup. I've already assumed that.

If you'd like to contribute, you'll need to fork the repo, clone your fork on your local system, make your changes, commit and push them to your fork, then submit...

The directive subgenerator already includes the ability to create an external template. Aren't modals just partials with a controller and no route? At least thats how I create them. And...

Just released version 3.1 of the generator. It includes new subgenerators for modals and modules. I'm open to adding more subgenerators in the future. Please use the new v3.1 and...

Thanks @mxa055!

That's likely a jshint warning. Jshint will warn you if you use any global that it isn't told about in the .jshintrc file. You need to add an entry to...

Aren't your ajax calls returning promises? It would seem harder to assign booleans since you'd have to add a then() and set a flag...?