Skip to content

Instantly share code, notes, and snippets.

@candland
Created March 8, 2011 01:11
Show Gist options
  • Save candland/859644 to your computer and use it in GitHub Desktop.
Save candland/859644 to your computer and use it in GitHub Desktop.
Image Fu Helper w/ Default
def default_image_fu image, default_image_path, geometry=nil, options={}
if image.present?
image_fu image, geometry, options
else
image_tag default_image_path
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment