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

@ -42,7 +42,7 @@ import confirm from '../../../components/confirm/confirm';
html += '<div class="listItem listItem-border">';
html += '<span class="listItemIcon material-icons live_tv" aria-hidden="true"></span>';
html += '<div class="listItemBody two-line">';
html += "<a is='emby-linkbutton' style='padding:0;margin:0;' data-ripple='false' class='clearLink' href='#!/dlnaprofile.html?id=" + profile.Id + "'>";
html += "<a is='emby-linkbutton' style='padding:0;margin:0;' data-ripple='false' class='clearLink' href='#/dlnaprofile.html?id=" + profile.Id + "'>";
html += '<div>' + escapeHtml(profile.Name) + '</div>';
html += '</a>';
html += '</div>';
@ -80,10 +80,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')
}];
}