Skip to content

Instantly share code, notes, and snippets.

@awead
Created August 5, 2016 13:50
Show Gist options
  • Save awead/2022b309dbb4e0e9c7cefef0d6cb4928 to your computer and use it in GitHub Desktop.
Save awead/2022b309dbb4e0e9c7cefef0d6cb4928 to your computer and use it in GitHub Desktop.
<script>
console.log("script called");
$(document).on('turoblinks:load', function() {
console.log("ready to for browse-btn call");
$('#browse-btn').browseEverything()
.done(function(data) { $('#status').html(data.length.toString() + " items selected") })
.cancel(function() { window.alert('Canceled!') });
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment