rack-pjax
rack-pjax copied to clipboard
pjax for rails and rack applications
There are a few weird things happening when I am trying to load the content of a view into the dedicated div. 1 . The first time I click on...
This url is throwing an error: http://rack-pjax.herokuapp.com
I have a index.html.erb (Question Controller) ``` def index @questions = Question.all respond_to do |format| format.html {render layout: false} format.json { render json: @questions } end end ``` In another...
works well in chrome, but as soon as i try on firefox the delete rails link break (they redirect to the show action...) Anyone have an idea what is going...
i´ve run into trouble using a site inside vagrant with ports 22 and 3000 forwarded... when a link uses pjax.. it just gets the pjax connection aborted and continues with...
Works fine with 1.7.x. Any insights? rails-backbone 0.8.0 requires query-rails 2.1.3 which includes jQ 1.8.2. Rolling back to rails-backbone 0.7.2 and jQ 1.7.2 works fine. Thanks in advance. Great gem.
I have added the data-pjax-container attribute to the normal yield and it works fine, but when i add the data-pjax-container attribute on the div wrapper that wrap the yield and...