Zoltan
Zoltan
Looks, it is a real issue, I have the same problem with belongsTo, hasMany. Firebase randomly remove relations, so data will be inconsistent. It is happening with async: true or...
I solved it with manually remove the previous relationship and adding the new one after. ``` javascript saveAuthor(author, book) { book.get('author').then((previousAuthor) => { previousAuthor.get('books').then((previousAuthorBooks) => { previousAuthorBooks.removeObject(book); previousAuthor.save(); }); });...
@tstirrat http://emberjs.jsbin.com/juwasa/edit?html,js,output Start playing with Author names, change them with the select box (after select, they will saved immediately).
In one of my app I added emmet to codemirror with simply overwrite the `ivy-codemirror` component. I tried to extract this logic in an addon, but unfortunately this trick doesn't...
After a few hours of investigation, I think, the problem here is the `isolatedModules: true`. This test will fail https://github.com/microsoft/tsyringe/blob/master/src/__tests__/errors.test.ts#L55 if you add `isolatedModules: true` to `jest.config.js`: https://github.com/microsoft/tsyringe/blob/master/test/jest.config.js#L14 ``` globals:...
Hi, I'm the maintainer of this tutorial page. This free tutorial is updated to Ember v2.3. http://yoember.com/ Maybe it is fit in your list. Appreciate if you can list it....
Hi @jkantner, thanks for your message. Learning Ember.js sounds fantastic, and you will love the journey. It is an amazing framework. Yep, you are right, the tutorial code is a...
WIP: https://github.com/zoltan-nz/library-app/pull/113
@jkantner Please check out the pull request. Packages and bootstrap import already updated. ;)
One of the common solution to generate a hash/md5 number from the content and extend the filename with this string. There is a popular gulp package, which can solve this...