This commit is contained in:
bel
2020-01-13 03:37:51 +00:00
commit c8eb52f9ba
2023 changed files with 702080 additions and 0 deletions

1951
.rclone_repo/docs/static/js/bootstrap.js vendored Executable file

File diff suppressed because it is too large Load Diff

14
.rclone_repo/docs/static/js/custom.js vendored Executable file
View File

@@ -0,0 +1,14 @@
// Site JS
// Add hover links on headings
$(function() {
return $("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));
}
});
});

10337
.rclone_repo/docs/static/js/jquery.js vendored Executable file

File diff suppressed because it is too large Load Diff