1
0
mirror of https://shylinux.com/x/volcanos synced 2025-04-26 01:04:06 +08:00
volcanos/plugin/local/chat/keyboard.js
shylinux@163.com 0139cd75aa opt code
2022-09-22 16:08:40 +08:00

10 lines
412 B
JavaScript

Volcanos(chat.ONIMPORT, {help: "导入数据", _init: function(can, msg) {
can.onappend.table(can, msg), can.onappend.board(can, msg)
var meta = {}; msg.Table(function(value, key) { meta[value.key] = value.value })
can.require(["/plugin/input/keyboard.js"], function() {
can.onfigure.keyboard._show(can, function(value) {
can.runAction(can.request({}, meta, can.Option()), "input", [value])
})
})
}})