Created
July 13, 2012 15:47
-
-
Save jlee42/3105603 to your computer and use it in GitHub Desktop.
Rails 3.2 deprecation of :mouseover
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
... | |
if mouseover = options.delete(:mouseover) | |
ActiveSupport::Deprecation.warn ":mouseover option is deprecated and will be removed from Rails 4.0" | |
options[:onmouseover] = "this.src='#{path_to_image(mouseover)}'" | |
options[:onmouseout] = "this.src='#{src}'" | |
end | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment