ember-cli-101-errata icon indicating copy to clipboard operation
ember-cli-101-errata copied to clipboard

Results 48 ember-cli-101-errata issues
Sort by recently updated
recently updated
newest added

Everything was working up to editing a friend. But I typed in the code from pg 43 and 44 for deleting a friend and now I get "Could not find...

On the top of page 43, you state "To support deletion on friends show route, we just need to add the same link with the action delete and implement the...

page 21 ``` Ember data has two mechanism to translate Ember data has two mechanisms to translate ``` page 25 ``` new structure has been propossed for Ember projects new...

I didn't have PhantomJS installed on my machine, and got into troubles in the testing chapter. ember test --server and the browser version worked, but ember test gave me an...

On Page 50, when I installed Picnic, the file path I needed to add to ember-cli-build.js was: `app.import('bower_components/picnic/picnic.min.css');` not: `app.import('bower_components/picnic/releases/picnic.min.css');` Also, I couldn't find the asset "plugins.min.css" anywhere in **bower_components/picnic/**,...

https://github.com/ember-data/active-model-adapter/commits/2.0.0 I had to manually downgrade to version 1.13.x in order to continue following the book.

The generated output is different, and it appears the addon should be built in the `addon` folder, not `app` now. When building the addon, I also had to fix this...

page 79, after changing the ember-cli-build.js, it's probably a good reminder to put in that you should restart ember-cli. I spent a few minutes trying to figure out why window.moment...

On page 77, when working with ember-data >= 1.13, model.rollback() has been renamed to model.rollbackAttributes(), so rollback() throws an error.

I think it's small typo but missing comma between state and friend. app/models/article.js import DS from 'ember-data'; export default DS.Model.extend({ createdAt: DS.attr('date'), description: DS.attr('string'), notes: DS.attr('string'), state: DS.attr('string') friend: DS.belongsTo('friend')...