Skip to content

Instantly share code, notes, and snippets.

@niceaji
Created July 24, 2017 00:43
Show Gist options
  • Save niceaji/521c5c011b5a81b4b58366eed402df25 to your computer and use it in GitHub Desktop.
Save niceaji/521c5c011b5a81b4b58366eed402df25 to your computer and use it in GitHub Desktop.
<script src="https://samanco.kakaocorp.com/uploader/widget/waveuploader.widget.js"></script>
<script>
WaveUploader.init({
appKey: '59705d2977c86a9d4d1ba044',
cpKey: 'test',
userKey: 'test',
onError: function(){
},
onAdd: function(data) {
debugger;
}
});
document.getElementById('btn').addEventListener('click', function() {
WaveUploader.open();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment