Fix loading indicator showing for theme videos

This commit is contained in:
Bill Thornton
2025-10-09 14:02:26 -04:00
parent fd4c897642
commit 2b96e9d6c7

View File

@@ -1608,13 +1608,11 @@ export class HtmlVideoPlayer {
if (!dlg) {
return import('./style.scss').then(() => {
loading.show();
if (options.fullscreen) loading.show();
const playerDlg = document.createElement('div');
playerDlg.setAttribute('dir', 'ltr');
playerDlg.classList.add('videoPlayerContainer');
if (options.fullscreen) {
playerDlg.classList.add('videoPlayerContainer-onTop');
}