mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix firefox image editor
This commit is contained in:
parent
6f96e87248
commit
b1f7f190a4
2 changed files with 3 additions and 3 deletions
|
@ -102,9 +102,9 @@
|
|||
// but not needed here since this is already on top of an existing dialog
|
||||
// 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 (!browserInfo.msie && !browserInfo.mozilla) {
|
||||
if (!browserInfo.msie && !browserInfo.firefox) {
|
||||
if (options.modal !== false) {
|
||||
dlg.setAttribute('modal', 'modal');
|
||||
//dlg.setAttribute('modal', 'modal');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -2347,7 +2347,7 @@ var AppInfo = {};
|
|||
deviceName = "Chrome";
|
||||
} else if (browserInfo.edge) {
|
||||
deviceName = "Edge";
|
||||
} else if (browserInfo.mozilla) {
|
||||
} else if (browserInfo.firefox) {
|
||||
deviceName = "Firefox";
|
||||
} else if (browserInfo.msie) {
|
||||
deviceName = "Internet Explorer";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue