| 1 |
(function ($) { |
| 2 |
"use strict"; |
| 3 |
$(document).on("click", "#switcher_shortcode_copy", function (e) { |
| 4 |
e.preventDefault(); |
| 5 |
/* Get the text field */ |
| 6 |
$(this).siblings("#switcher_shortcode").select(); |
| 7 |
/* Select the text field */ |
| 8 |
document.execCommand("copy"); |
| 9 |
$(".switcher_shortcode_after_copy").animate( |
| 10 |
{ |
| 11 |
opacity: 1, |
| 12 |
bottom: 25, |
| 13 |
}, |
| 14 |
300 |
| 15 |
); |
| 16 |
setTimeout(function () { |
| 17 |
jQuery(".switcher_shortcode_after_copy").animate( |
| 18 |
{ |
| 19 |
opacity: 0, |
| 20 |
}, |
| 21 |
200 |
| 22 |
); |
| 23 |
jQuery(".switcher_shortcode_after_copy").animate( |
| 24 |
{ |
| 25 |
bottom: 0, |
| 26 |
}, |
| 27 |
0 |
| 28 |
); |
| 29 |
}, 2000); |
| 30 |
}); |
| 31 |
|
| 32 |
})(jQuery); |