File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,10 @@ function CloudCmdProto(DOM) {
5959 this . prefixSocket = '' ;
6060 this . prefixURL = '' ;
6161
62- var bodyStyle = getComputedStyle ( document . body ) ;
63- this . MIN_ONE_PANEL_WIDTH = bodyStyle . getPropertyValue ( "--min-one-panel-width" ) ;
64- this . MOBILE_ONE_PANEL_WIDTH = bodyStyle . getPropertyValue ( '--mobile-max-width' )
62+ const bodyStyle = getComputedStyle ( document . body ) ;
63+
64+ this . MIN_ONE_PANEL_WIDTH = bodyStyle . getPropertyValue ( '--min-one-panel-width' ) ;
65+ this . MOBILE_ONE_PANEL_WIDTH = bodyStyle . getPropertyValue ( '--mobile-max-width' ) ;
6566
6667 this . HOST = location . origin || location . protocol + '//' + location . host ;
6768
Original file line number Diff line number Diff line change 2323 --mobile-max-width : 600px ;
2424 --min-one-panel-width : 1155px ;
2525}
26+
2627@media only screen and (height <= 900px) and (width <= 600px) {
2728 .fm {
2829 height : 85% ;
You can’t perform that action at this time.
0 commit comments