Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/272cc93bd215605f7c230ca15bf300bfaf6f9a4b/UI/jQuery/ToTheTop.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/jQuery/ToTheTop.js

24 lines
550 B

'use strict';
define(
[
'bootstrap'
], function () {
$(document).ready(function () {
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('#scroll-up').fadeIn();
}
else {
$('#scroll-up').fadeOut();
}
});
$('#scroll-up').click(function () {
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
});
});