Skip to content

Instantly share code, notes, and snippets.

@jonmumm
Last active December 14, 2015 04:19
Show Gist options
  • Save jonmumm/5027367 to your computer and use it in GitHub Desktop.
Save jonmumm/5027367 to your computer and use it in GitHub Desktop.
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
}
a {
text-decoration: none;
color: rgb(66, 134, 201);
&:hover {
text-decoration: underline;
}
}
p {
line-height: 1.6em;
color: $light-text-color;
}
#{$all-text-inputs} {
width: 100%;
@include box-shadow(inset 0px -2px 2px rgba(0, 0, 0, 0.18));
border-radius: 2px;
@include box-sizing(border-box);
border: none;
padding: 12px;
}
*, :focus, :active {
outline: 0;
}
$ ->
new FP.Routers.Main
Backbone.history.start
pushState: true
$(".donate a").on "click", (event) ->
amount = $(event.currentTarget).attr "data-amount"
event.preventDefault()
StripeCheckout.open
key: FP.Config.StripePublishableKey
address: false
amount: amount * 100
name: "Fork & Pull"
panelLabel: "Donate"
image: FP.Assets.Avatar
description: "Thank you!"
token: (event) ->
$("#donation_token").val event.id
$("#donation_amount").val(amount * 100)
$(".new_donation").submit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment