mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #2678 from grafixeyehero/window.global
Access Loading globally
This commit is contained in:
commit
c8fcb9e664
2 changed files with 8 additions and 3 deletions
|
@ -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',
|
||||||
|
|
|
@ -68,7 +68,11 @@ export function hide() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
const loading = {
|
||||||
show: show,
|
show,
|
||||||
hide: hide
|
hide
|
||||||
};
|
};
|
||||||
|
|
||||||
|
window.Loading = loading;
|
||||||
|
|
||||||
|
export default loading;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue