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

@ -92,7 +92,7 @@ function populateList(options) {
function getPluginHtml(plugin, options, installedPlugins) {
let html = '';
let href = plugin.externalUrl ? plugin.externalUrl : '#!/addplugin.html?name=' + encodeURIComponent(plugin.name) + '&guid=' + plugin.guid;
let href = plugin.externalUrl ? plugin.externalUrl : '#/addplugin.html?name=' + encodeURIComponent(plugin.name) + '&guid=' + plugin.guid;
if (options.context) {
href += '&context=' + options.context;
@ -134,13 +134,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')
}];
}