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

fixed issue where tooltips in some grids would make the grid shift slightly.

pull/24/head
Keivan Beigi 12 years ago
parent 42c6ca4297
commit f162c5848f

@ -11,6 +11,15 @@ define(
element.attr('data-placement', 'right');
}
var container = element.parents('.modal-body');
if (container.length === 0) {
container = 'body';
}
element.tooltip({
container: container
});
element.tooltip('show');
});
});

Loading…
Cancel
Save