1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Remove hash bang paths

This commit is contained in:
Bill Thornton 2022-06-09 14:54:39 -04:00
parent 1dbbb4c65d
commit 90b1b45f26
26 changed files with 136 additions and 132 deletions

View file

@ -127,7 +127,7 @@ function populateList(page, plugins, pluginConfigurationPages) {
} else {
html += '<div class="centerMessage">';
html += '<h1>' + globalize.translate('MessageNoPluginsInstalled') + '</h1>';
html += '<p><a is="emby-linkbutton" class="button-link" href="#!/availableplugins.html">';
html += '<p><a is="emby-linkbutton" class="button-link" href="#/availableplugins.html">';
html += globalize.translate('MessageBrowsePluginCatalog');
html += '</a></p>';
html += '</div>';
@ -212,13 +212,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')
}];
}