Last active
January 11, 2017 19:09
-
-
Save tessalt/d546fc64de0da54d42f2a9274da11824 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Test: Product</title> | |
</head> | |
<body> | |
<script data-shopify-buy-ui> | |
(function () { | |
var scriptURL = "../../tmp/buy-button-storefront.js"; | |
if (window.ShopifyBuy && window.ShopifyBuy.UI) { | |
ShopifyBuyInit(); | |
} else { | |
var script = document.createElement('script'); | |
script.async = true; | |
script.src = scriptURL; | |
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script); | |
script.onload = ShopifyBuyInit; | |
} | |
function ShopifyBuyInit() { | |
var client = ShopifyBuy.buildClient({ | |
// your credentials here | |
}); | |
ShopifyBuy.UI.onReady(client).then(function (ui) { | |
ui.createComponent('product', { | |
// your config here | |
}); | |
}); | |
} | |
})(); | |
</script> | |
</body> | |
</html> | |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>BuyButton.js</title> | |
</head> | |
<body> | |
<div id="contents"></div> | |
<script src="https://code.jquery.com/jquery-3.1.1.js"></script> | |
<script type="text/javascript"> | |
$.ajax({ | |
url: '/ajax.html' | |
}).then(function (data) { | |
$('#contents').append(data); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment