Skip to content

Instantly share code, notes, and snippets.

@joegaudet
Created November 28, 2011 09:54
Show Gist options
  • Save joegaudet/1399814 to your computer and use it in GitHub Desktop.
Save joegaudet/1399814 to your computer and use it in GitHub Desktop.
def button(id, text, klass)
return "<button id='#{id}' type='button' name='#{id}' class='#{klass}'><div class='background hover'></div><div class='background active'></div><div class='label'>#{text}</div></button>".html_safe
end
def button_link(id, text, klass, url)
return "<a id='#{id}' href='#{url}' class='button #{klass}'><div class='background hover'></div><div class='background active'></div><div class='label'>#{text}</div></a>".html_safe
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment