Created
December 21, 2008 12:02
-
-
Save dhh/38672 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
l like 'respond_do..."