Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/blame/commit/42c6ca42971e270afe8662440fafb46614f9c6b8/UI/jQuery/TooltipBinder.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/jQuery/TooltipBinder.js

17 lines
396 B

'use strict';
define(
[
'bootstrap'
], function () {
$(document).on('mouseenter', '[title]', function () {
var element = $(this);
if (!element.attr('data-placement') && element.parents('.control-group').length > 0) {
element.attr('data-placement', 'right');
}
element.tooltip('show');
});
});