You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the loadUrl option, there seems to be a bug that changes the size when pop-up pops up again.
When the pop-up is closed, csss such as width: 'auto', height: 'auto' are added automatically,
and as it is added, the size of the pop-up (DIV) decreases.
The most efficient way to prevent div pop-up sizes from decreasing is as follows.
When defining the width of the pop-up div in the css file, add '!important' to the width size
Using the loadUrl option, there seems to be a bug that changes the size when pop-up pops up again.
When the pop-up is closed, csss such as width: 'auto', height: 'auto' are added automatically,
and as it is added, the size of the pop-up (DIV) decreases.
The most efficient way to prevent div pop-up sizes from decreasing is as follows.
When defining the width of the pop-up div in the css file, add '!important' to the width size
.popup_layer.popup_setting { width:1050px; ...
->
.popup_layer.popup_setting { width:1050px !important; ...
The text was updated successfully, but these errors were encountered: