0.2.0 • Published 7 years ago

ember-cli-patch-stripejs v0.2.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

This addon will add Stripe or patch it depending on your enviornment

In development/test/server builds you will get the following

<script type="text/javascript">
    var Stripe = {
        setPublishableKey: function(){
            console.log("Setting publishable key.");
        },
        card: {
            createToken: function() {
                console.log("createToken was called.");
            }
        }
    };
</script>

In production you will get the real stripe client library

<script type="text/javascript" src="https://js.stripe.com/v2/"></script>