Idan Cohen
Idan Cohen
Following [this PR](https://github.com/angulartics/angulartics-google-analytics/pull/9), i wish to set custom dimensions to my google analytics pageviews. But calling `$analytics.setUserProperties` inside the controller means that it happens **after** `$stateChangeSuccess`, so it doesn't really...
I've installed [bootstrap 4](https://v4-alpha.getbootstrap.com/) in my fountain project, and it was much harder than i've anticipated, so i thought i'd share the recipe for those who follow. start with installing...
I'm trying to build my fountain project into a module, to be consumed by other projects, using webpack (or maybe bower?). webpack-dist is not the configuration i'm looking for: I've...
Hi, All CSS attributes in chrome inspector points to without any reference to the original files. any idea why or how to fix? `{ "generator-fountain-angular1": { "version": "1.0.0-rc2", "props": {...
The `validSubmit` attribute of `FormValidationDirective` is emitted based on FormGroup's current status, as shown here - ``` if (this.formGroup.valid) { this.validSubmit.emit(this.formGroup.value); } ``` So if we're using an async validator,...
Fixes issue #57
I've created a new project and add a new component using the generator - `yo fountain-angular1:component --name myComponent --dir components/game` I've added references to the new component and successfully used...
I'm trying to make my code more pretty by replacing this - `templateUrl: 'foo/bar.template.jade'` with this `templateUrl: 'foo/bar'` Something similar was implemented in PR #35 which was dismissed by @WearyMonkey...
Add google analytics to the project, or any other service that can provide better information.
Bootstrap is famous for its lovely buttons - http://v4-alpha.getbootstrap.com/components/buttons/ http://v4-alpha.getbootstrap.com/components/button-group/ But if you fuse them with angular, you can get cool toggle buttons like these - http://angular-ui.github.io/bootstrap/#!#buttons Worth the trouble?