1
0
mirror of https://shylinux.com/x/volcanos synced 2025-04-25 16:58:06 +08:00
This commit is contained in:
harveyshao 2022-07-15 21:34:03 +08:00
parent d6dd6560a6
commit 4cedaed642

View File

@ -115,7 +115,9 @@ Volcanos(chat.ONDETAIL, {help: "用户交互",
}) })
Volcanos(chat.ONEXPORT, {help: "导出数据", list: ["from", "commit", "total", "max", "date", "text", "add", "del"], Volcanos(chat.ONEXPORT, {help: "导出数据", list: ["from", "commit", "total", "max", "date", "text", "add", "del"],
height: function(can) { var height = can.Action(html.HEIGHT) height: function(can) { var height = can.Action(html.HEIGHT)
if (height == ice.AUTO) { height = can.base.Max(can.ConfHeight(), 600) } if (height == ice.AUTO) { height = can.ConfHeight()
can.isFullMode() || (height = can.base.Max(can.ConfHeight(), 600))
}
if (height < 200) { height = 200 } if (height < 200) { height = 200 }
return parseInt(height||can._root._height/2) return parseInt(height||can._root._height/2)
}, },