2013-01-07 21:29:16 +01:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
|
|
|
// Backup the clipboard button's original text.
|
2013-01-22 01:45:45 +01:00
|
|
|
$(".js-clipboard-button").data('clipboard-prompt', $('.js-clipboard-button').text());
|
|
|
|
|
2013-01-07 21:29:16 +01:00
|
|
|
// Hook up copy to clipboard buttons
|
2013-01-22 01:45:45 +01:00
|
|
|
var clip = new ZeroClipboard($(".js-clipboard-button"), {
|
2013-01-17 22:45:36 +01:00
|
|
|
moviePath: "../../javascripts/ZeroClipboard.swf"
|
2013-01-22 01:45:45 +01:00
|
|
|
});
|
2013-01-07 21:29:16 +01:00
|
|
|
|
2013-01-22 01:45:45 +01:00
|
|
|
clip.on('mouseover', function(client, args) {
|
2013-01-07 21:29:16 +01:00
|
|
|
// Restore the clipboard button's original text.
|
|
|
|
this.innerText = $(this).data('clipboard-prompt');
|
2013-01-22 01:45:45 +01:00
|
|
|
});
|
2013-01-07 21:29:16 +01:00
|
|
|
|
2013-01-22 01:45:45 +01:00
|
|
|
clip.on('complete', function(client, args) {
|
2013-01-07 21:29:16 +01:00
|
|
|
this.innerText = 'Copied!';
|
2013-01-22 01:45:45 +01:00
|
|
|
});
|
2013-01-07 21:29:16 +01:00
|
|
|
|
|
|
|
});
|