Merge pull request #2164 from thornbill/fix-links-maybe

Fix more link issues
This commit is contained in:
Bill Thornton
2020-12-03 20:19:49 -05:00
committed by GitHub
11 changed files with 30 additions and 31 deletions
-1
View File
@@ -20,7 +20,6 @@ class AppRouter {
currentViewLoadRequest;
firstConnectionResult;
forcedLogoutMsg;
handleAnchorClick = page.clickHandler;
isDummyBackToHome;
msgTimeout;
popstateOccurred = false;
+2 -2
View File
@@ -79,10 +79,10 @@ import confirm from '../../../components/confirm/confirm';
function getTabs() {
return [{
href: 'dlnasettings.html',
href: '#!/dlnasettings.html',
name: globalize.translate('Settings')
}, {
href: 'dlnaprofiles.html',
href: '#!/dlnaprofiles.html',
name: globalize.translate('TabProfiles')
}];
}
+2 -2
View File
@@ -38,10 +38,10 @@ import Dashboard from '../../../scripts/clientUtils';
function getTabs() {
return [{
href: 'dlnasettings.html',
href: '#!/dlnasettings.html',
name: globalize.translate('Settings')
}, {
href: 'dlnaprofiles.html',
href: '#!/dlnaprofiles.html',
name: globalize.translate('TabProfiles')
}];
}
+4 -4
View File
@@ -359,16 +359,16 @@ import confirm from '../../components/confirm/confirm';
function getTabs() {
return [{
href: 'library.html',
href: '#!/library.html',
name: globalize.translate('HeaderLibraries')
}, {
href: 'librarydisplay.html',
href: '#!/librarydisplay.html',
name: globalize.translate('Display')
}, {
href: 'metadataimages.html',
href: '#!/metadataimages.html',
name: globalize.translate('Metadata')
}, {
href: 'metadatanfo.html',
href: '#!/metadatanfo.html',
name: globalize.translate('TabNfoSettings')
}];
}
+4 -4
View File
@@ -9,16 +9,16 @@ import Dashboard from '../../scripts/clientUtils';
function getTabs() {
return [{
href: 'library.html',
href: '#!/library.html',
name: globalize.translate('HeaderLibraries')
}, {
href: 'librarydisplay.html',
href: '#!/librarydisplay.html',
name: globalize.translate('Display')
}, {
href: 'metadataimages.html',
href: '#!/metadataimages.html',
name: globalize.translate('Metadata')
}, {
href: 'metadatanfo.html',
href: '#!/metadatanfo.html',
name: globalize.translate('TabNfoSettings')
}];
}
+4 -4
View File
@@ -52,16 +52,16 @@ import Dashboard from '../../scripts/clientUtils';
function getTabs() {
return [{
href: 'library.html',
href: '#!/library.html',
name: globalize.translate('HeaderLibraries')
}, {
href: 'librarydisplay.html',
href: '#!/librarydisplay.html',
name: globalize.translate('Display')
}, {
href: 'metadataimages.html',
href: '#!/metadataimages.html',
name: globalize.translate('Metadata')
}, {
href: 'metadatanfo.html',
href: '#!/metadatanfo.html',
name: globalize.translate('TabNfoSettings')
}];
}
+4 -4
View File
@@ -47,16 +47,16 @@ import alert from '../../components/alert';
function getTabs() {
return [{
href: 'library.html',
href: '#!/library.html',
name: globalize.translate('HeaderLibraries')
}, {
href: 'librarydisplay.html',
href: '#!/librarydisplay.html',
name: globalize.translate('Display')
}, {
href: 'metadataimages.html',
href: '#!/metadataimages.html',
name: globalize.translate('Metadata')
}, {
href: 'metadatanfo.html',
href: '#!/metadatanfo.html',
name: globalize.translate('TabNfoSettings')
}];
}
@@ -123,13 +123,13 @@ function getPluginHtml(plugin, options, installedPlugins) {
function getTabs() {
return [{
href: 'installedplugins.html',
href: '#!/installedplugins.html',
name: globalize.translate('TabMyPlugins')
}, {
href: 'availableplugins.html',
href: '#!/availableplugins.html',
name: globalize.translate('TabCatalog')
}, {
href: 'repositories.html',
href: '#!/repositories.html',
name: globalize.translate('TabRepositories')
}];
}
@@ -159,13 +159,13 @@ function reloadList(page) {
function getTabs() {
return [{
href: 'installedplugins.html',
href: '#!/installedplugins.html',
name: globalize.translate('TabMyPlugins')
}, {
href: 'availableplugins.html',
href: '#!/availableplugins.html',
name: globalize.translate('TabCatalog')
}, {
href: 'repositories.html',
href: '#!/repositories.html',
name: globalize.translate('TabRepositories')
}];
}
@@ -77,13 +77,13 @@ function getRepositoryHtml(repository) {
function getTabs() {
return [{
href: 'installedplugins.html',
href: '#!/installedplugins.html',
name: globalize.translate('TabMyPlugins')
}, {
href: 'availableplugins.html',
href: '#!/availableplugins.html',
name: globalize.translate('TabCatalog')
}, {
href: 'repositories.html',
href: '#!/repositories.html',
name: globalize.translate('TabRepositories')
}];
}
+1 -1
View File
@@ -18,7 +18,7 @@ function onAnchorClick(e) {
shell.openUrl(href);
}
} else {
appRouter.handleAnchorClick(e);
appRouter.show(href);
}
} else {
e.preventDefault();