mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
collection fixes
This commit is contained in:
parent
8f05744009
commit
add9159c97
10 changed files with 280 additions and 294 deletions
|
@ -96,7 +96,10 @@
|
|||
|
||||
dlg.classList.add('popupEditor');
|
||||
|
||||
if (options.size == 'medium') {
|
||||
if (options.size == 'small') {
|
||||
dlg.classList.add('small-paper-dialog');
|
||||
}
|
||||
else if (options.size == 'medium') {
|
||||
dlg.classList.add('medium-paper-dialog');
|
||||
} else {
|
||||
dlg.classList.add('fullscreen-paper-dialog');
|
||||
|
@ -112,7 +115,7 @@
|
|||
}
|
||||
|
||||
function positionTo(dlg, elem) {
|
||||
|
||||
|
||||
var windowHeight = $(window).height();
|
||||
|
||||
// If the window height is under a certain amount, don't bother trying to position
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue