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

form tooltips pop from right.

pull/6/head
kay.one 12 years ago
parent 94807ac00b
commit 7d7cdfa148

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

Loading…
Cancel
Save