How would I change a redirect to a specific Twitter Bootstrap tab on a specific page? Something like:
def destroy
@custom_article = CustomArticle.find(params[:id])
@custom_article.destroy
respond_to do |format|
format.html { redirect_to documents_url[#specific_tab_here?] }
format.json { head :no_content }
end
end
Thanks!
UPDATE
See @PeterWong's and @emm's answers combined for a solution.