mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
startup wizard fixes
This commit is contained in:
parent
25b182603e
commit
2f160fcaa0
5 changed files with 24 additions and 22 deletions
|
@ -217,7 +217,10 @@
|
|||
|
||||
var dlg = PaperDialogHelper.createDialog({
|
||||
theme: 'a',
|
||||
size: 'medium'
|
||||
size: 'medium',
|
||||
|
||||
// In (at least) chrome this is causing the text field to not be editable
|
||||
modal: false
|
||||
});
|
||||
|
||||
dlg.classList.add('directoryPicker');
|
||||
|
|
|
@ -93,7 +93,9 @@
|
|||
// but skip it in IE because it's causing the entire browser to hang
|
||||
// Also have to disable for firefox because it's causing select elements to not be clickable
|
||||
if (!$.browser.msie && !$.browser.mozilla) {
|
||||
dlg.setAttribute('modal', 'modal');
|
||||
if (options.modal !== false) {
|
||||
dlg.setAttribute('modal', 'modal');
|
||||
}
|
||||
}
|
||||
|
||||
//// seeing max call stack size exceeded in the debugger with this
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue