RailsCasts Pro episodes are now free!

Learn more or hide this

Jvanwyk's Profile

GitHub User: Jvanwyk

Comments by

Avatar

Ryan shows how to avoid a CSS collision in Episode #264 @ about 10:17 when discussing how the ActiveAdmin CSS can cause a conflict with the normal CSS.

Removing from the application.css file:

*= require_tree .

and manually loading each of them in works much better.

Avatar

The directory path for store.js.coffee in the Show Notes has the wrong label. It should be in the right place if you generated it. If you placed it there based on the show notes, it might not work.

app/assets/javascripts/models/store.js.coffee
DS.RESTAdapter.configure("plurals", entry: "entries")

It should be

app/assets/javascripts/store.js.coffee
DS.RESTAdapter.configure("plurals", entry: "entries")