msp/wwwroot/connecthost.ui
2025-12-09 13:03:50 +08:00

31 lines
576 B
XML

{
"widgettype":"PopupWindow",
"options":{
"auto_open":true,
"auto_destroy":true,
"archor":"cc",
{% if int(params_kw._is_mobile) %}
"widh": "98%",
"height": "98%",
{% else %}
"width": "70%",
"height": "70%",
{% endif %}
"movable":true,
"icon":"{{entire_url('imgs/terminal.svg')}}",
"title":"{{params_kw.name}}",
"content":{
"widgettype":"Wterm",
"options":{
"height":"100%",
"width":"100%",
"term_options":{
"fontSize":24
},
"ws_url":"{{entire_url('/wss/msp/connecthost.xterm')}}?hostid={{params_kw.id}}"
}
}
}
}