dhh (owner)

Forks

Revisions

gist: 38672 Download_button fork
public
Public Clone URL: git://gist.github.com/38672.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
case request.format
when :html then render
when :js then render
else head(:not_supported)
end
 
# vs
 
respond_to do |format|
  format.html
  format.js
end