Cary Landholt

Results 10 comments of Cary Landholt

Hi @belarfaoui-zakaria, Can you clarify your request? I'm not quite following. Before and after code would be great. Thanks, Cary

I'm not exactly sure why the two would behave differently; however, I did notice a few typos. Typos fixed ``` coffee app.factory 'Data', [ '$log' '$q' ($log, $q) -> getData1:...

Might be tricky if load order is important. This says it is. http://www.bennadel.com/blog/2870-using-module-decorator-in-angularjs-1-4.htm

Try using a factory to represent the `lives` resolve function. _see below_ The `Resolver` factory takes in the `liveService` and returns all of the `lives`. The `resolve.lives` config takes in...

Angular will resolve `lives` properly.

Of course On Thu, Mar 26, 2015 at 1:37 PM, Victor Nahuel Chaves [email protected] wrote: > Thank you very much! i will try this later, if it works.. can i...

Can you share your repo? I'll take a look. > On Mar 26, 2015, at 21:57, Victor Nahuel Chaves [email protected] wrote: > > if i leave the annotation of the...

My gosh, @nahue! My sincere apologies for the extreme delay in replying to your question. I've been focusing on my day job, a startup. I just realized that I've tested...

yep - discovered the same thing myself

this worked for me ```JavaScript const enhancer = composeWithDevTools( applyMiddleware(...middleware), offline(offlineConfig), // Add this to the end of your enhancer chain: createStore => (reducer, preloadedState, enhancer) => enhancer(createStore)(reducer, preloadedState), )...