Scott Barrow

Results 15 comments of Scott Barrow

``` config.middleware.insert_after Rails::Rack::Logger, Rack::Cors, :logger => Rails.logger do allow do origins '*' resource '/reservations/*', :headers => :any, :methods => [:get, :post] resource '/hotels/*', :headers => :any, :methods => [:get] resource...

Hi Calvin Can you tell me if you have a way to expose the location in the headers? Im getting: jqXHR.getAllResponseHeaders() "Content-Type: application/json; charset=utf-8 Cache-Control: max-age=0, private, must-revalidate I’m looking...

Yeah I can see them in the browser, so I guess its not a return header issue, its more that the browser is not passing them back to the ajax...

I also experienced some undesirable behavior with the pause_after setting. I believe the issue is caused by the fact that the pre_step_callback does not fire until joyride is resumed, so...

I believe Ransack has an option to raise on unknown attributes https://activerecord-hackery.github.io/ransack/going-further/other-notes/#handling-unknown-predicates-or-attributes i.e. `.ransack!(...)` will raise on unknown attributes if the option is true but errors are not added to...