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 Rails.env.production? | |
PAYPAL_ACCOUNT = '[email protected]' | |
else | |
PAYPAL_ACCOUNT = '[email protected]' | |
ActiveMerchant::Billing::Base.mode = :test | |
end |
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
/** | |
* 3D Now In Beta Ribbon | |
*/ | |
/*@font-face { | |
font-family: Collegiate; | |
src: url("Collegiate.ttf"); | |
}*/ | |
.ribbon-holder { |
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
#!/bin/sh | |
git filter-branch --env-filter ' | |
an="$GIT_AUTHOR_NAME" | |
am="$GIT_AUTHOR_EMAIL" | |
cn="$GIT_COMMITTER_NAME" | |
cm="$GIT_COMMITTER_EMAIL" | |
if [ "$GIT_COMMITTER_EMAIL" = "[email protected]" ] |
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
/* Hide/show placeholder text in an input field while it's empty | |
* To use, add data-placheholder="placeholder text" to your fields | |
* Eg: <input type="text" id="email" value="" data-placeholder="Enter your e-mail"> | |
*/ | |
$('input[data-placeholder]').each(function(){ | |
$(this) | |
.bind('focus', function() { | |
if ($(this).val() == $(this).data('placeholder')) | |
$(this).val(''); | |
}) |
NewerOlder