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

fix artist total record count

This commit is contained in:
Luke Pulverenti 2016-06-17 20:52:04 -04:00
parent f61263bbad
commit 2dba35a875
8 changed files with 49 additions and 58 deletions

View file

@ -621,7 +621,7 @@ var Dashboard = {
headerHtml += '</a>';
headerHtml += '</div>';
$(page).prepend(headerHtml);
page.insertAdjacentHTML('afterbegin', headerHtml);
}
},
@ -2528,15 +2528,17 @@ var AppInfo = {};
defineRoute({
path: '/forgotpassword.html',
dependencies: [],
anonymous: true
dependencies: ['emby-input', 'emby-button'],
anonymous: true,
controller: 'scripts/forgotpassword'
});
defineRoute({
path: '/forgotpasswordpin.html',
dependencies: [],
dependencies: ['emby-input', 'emby-button'],
autoFocus: false,
anonymous: true
anonymous: true,
controller: 'scripts/forgotpasswordpin'
});
defineRoute({