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

Fixed: ctrl + clicking links will open in a new tab

pull/4/head
Mark McDowall 11 years ago
parent 2711cd6afa
commit b538b450f5

@ -49,9 +49,15 @@ define(
}
if (!href.startsWith('http')) {
var relativeHref = href.replace(StatusModel.get('urlBase'), '');
if (event.ctrlKey) {
window.open(href, '_blank');
}
else {
var relativeHref = href.replace(StatusModel.get('urlBase'), '');
Backbone.history.navigate(relativeHref, { trigger: true });
Backbone.history.navigate(relativeHref, { trigger: true });
}
}
else if (href.contains('#')) {
//Open in new tab without dereferer (since it doesn't support fragments)

Loading…
Cancel
Save