Francesco Gramano

Results 7 comments of Francesco Gramano

Update: It works if I take out `import 'angular'` from `app.ts` and install angular through bower and add `"bower_components/angular/angular.js"` to my files array in `karma.conf.js` but this defeats the purpose...

@tommysander Sorry but the trick I mentioned just before your comment was the only thing I've noticed to work and haven't tried it since.

@meltedspark I don't have a specific use case for it but I thought it would be good to mimic how [react-app-rewired](https://github.com/timarney/react-app-rewired) allows customizations of webpack builds. A nice implication of...

Made a pull request for this: [@Pull 38](https://github.com/llimllib/limbo/pull/38) Tests passing for Travis CI (after fixing test_mlb test case)

@HarryBosh As @rajkumarpb said, storage with this library is meant to be persistent, and that kind of persistence depends on the storage type. I'm not sure I follow your question...

@iltera If you don't want to deal with `$scope.$watch` and you simply just want to display the number of keys on your page, use Angular's two-way data-binding. Assuming you're using...

From [angular-dynamic-locale's documentation](https://github.com/lgalfaso/angular-dynamic-locale/blob/master/README.md) > It is possible to ask the storage to be $cookieStore using the shortcut tmhDynamicLocaleProvider.useCookieStorage(), internally this is exactly as performing tmhDynamicLocaleProvider.useStorage('$cookieStore') Reading [their source code](https://github.com/lgalfaso/angular-dynamic-locale/blob/master/src/tmhDynamicLocale.js), ```...