Created
November 28, 2011 09:54
-
-
Save joegaudet/1399814 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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