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

Migration backdrop to ES6 modules

(cherry picked from commit 4ff4df6477cec4ea71ab042340bfd8875561221e)
This commit is contained in:
grafixeyehero 2020-06-16 23:45:03 +03:00
parent b57c6cacb8
commit cfd2ec1ddc
8 changed files with 106 additions and 99 deletions

View file

@ -50,7 +50,7 @@ define(['backdrop', 'userSettings', 'libraryMenu'], function (backdrop, userSett
return i;
}));
} else {
backdrop.clear();
backdrop.clearBackdrop();
}
});
}
@ -67,10 +67,10 @@ define(['backdrop', 'userSettings', 'libraryMenu'], function (backdrop, userSett
showBackdrop(type, parentId);
} else {
page.classList.remove('backdropPage');
backdrop.clear();
backdrop.clearBackdrop();
}
} else {
backdrop.clear();
backdrop.clearBackdrop();
}
}
});