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

add Loading globally

This commit is contained in:
grafixeyehero 2021-05-22 14:38:20 +03:00
parent 10a176098d
commit 78ff8abf25
2 changed files with 8 additions and 3 deletions

View file

@ -93,6 +93,7 @@ module.exports = {
'LibraryMenu': 'writable', 'LibraryMenu': 'writable',
'LinkParser': 'writable', 'LinkParser': 'writable',
'LiveTvHelpers': 'writable', 'LiveTvHelpers': 'writable',
'Loading': 'writable',
'MetadataEditor': 'writable', 'MetadataEditor': 'writable',
'PlaylistViewer': 'writable', 'PlaylistViewer': 'writable',
'UserParentalControlPage': 'writable', 'UserParentalControlPage': 'writable',

View file

@ -68,7 +68,11 @@ export function hide() {
} }
} }
export default { const loading = {
show: show, show,
hide: hide hide
}; };
window.Loading = loading;
export default loading;