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

moved search into slide out panel

This commit is contained in:
Luke Pulverenti 2013-12-27 11:18:42 -05:00
parent 728e0003b2
commit e7a3a38b03
34 changed files with 493 additions and 621 deletions

View file

@ -61,6 +61,7 @@
deleteUser: function (link) {
var page = $.mobile.activePage;
var name = link.getAttribute('data-username');
var msg = "Are you sure you wish to delete " + name + "?";
@ -74,7 +75,7 @@
ApiClient.deleteUser(id).done(function () {
Dashboard.validateCurrentUser($.mobile.activePage);
Dashboard.validateCurrentUser(page);
UserProfilesPage.loadPageData();
});
}