1
0
forked from x/volcanos
This commit is contained in:
shylinux 2021-11-09 23:52:16 +08:00
parent 8e4a8fe0a3
commit b11630de00

View File

@ -257,7 +257,7 @@ Volcanos("onappend", {help: "渲染引擎", list: [], _init: function(can, meta,
}
var input = can.page.input(can, item, value)
var br = input.type == html.TEXTAREA? [{type: html.BR}]: []
var br = input.type == html.TEXTAREA? [{type: html.BR, style: {clear: "both"}}]: []
var title = can.Conf(["feature", chat.TITLE, item.name].join(ice.PT))||""; title && (input.title = title)
return can.page.Append(can, target, ([{view: style||can.base.join([html.ITEM, item.type]), list: [input]}]).concat(br))[item.name]
},