mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
ab4a2275eb
add popper library for popup menus
22 lines
561 B
JavaScript
22 lines
561 B
JavaScript
// Site JS
|
|
|
|
$(function() {
|
|
// Add hover links on headings
|
|
$("h2, h3, h4, h5, h6").each(function(i, el) {
|
|
var $el, icon, id;
|
|
$el = $(el);
|
|
id = $el.attr('id');
|
|
icon = '<i class="fa fa-link"></i>';
|
|
if (id) {
|
|
return $el.prepend($("<a />").addClass("header-link").attr("href", "#" + id).html(icon));
|
|
}
|
|
});
|
|
// Wire up copy to clipboard buttons
|
|
$(".copy-to-clipboard").click(function() {
|
|
var copyText = $(this).prev();
|
|
copyText.select();
|
|
document.execCommand("copy");
|
|
$(this).attr("title", "Copied!");
|
|
});
|
|
});
|