Ramon Boss

Results 14 comments of Ramon Boss

I recommend [js-cookie](https://github.com/js-cookie/js-cookie). You receive the auth token and save it with `Cookies.set('authToken', authToken)`. To get it use `Cookies.get('authToken')`.

[This](https://github.com/davezuko/react-redux-starter-kit/issues/1160) is how I'm trying to load it. But it has a bug.

Whats the point of having the key prop? Can't we just merge the state? ```js { history: { location: { path: '/example/somevalue' } }, matches: { params: { username: 'supasate',...

For me it works. I installed angular-foundation-6 via `bower install --save angular-foundation-6`. After I run `gulp inject` it's injected in my `.tmp/serve/app/index.html`. Is it really not injected or does the...

For me it works. Which task is the one that fails? 3.0.1 -> 4.0.0 means major release corresponding to [SemVer](http://semver.org/) so there should be breaking changes. Can you post some...

I've tested it. For me it works. You just need to `bower install --save angularfire` because it depends on firebase. I also bumped `gulp-inject`, `wiredep` and `main-bower-files` to the latest...

You have to set `useXDomain = true` and delete `X-Requested-With` in your config() block. ``` .config(function ($httpProvider) { $httpProvider.defaults.useXDomain = true; delete $httpProvider.defaults.headers.common['X-Requested-With']; } }) ``` If you use the...

Where is your `data.json` file? You have to provide the path relative from your `src/` folder. `.success` and `.error` are deprecated. Use `.then` and `.catch` instead.

Have you tried [this](https://better-inter.net/enabling-cors-in-angular-js/) in your app?