mirror of
https://shylinux.com/x/volcanos
synced 2025-04-25 08:48:06 +08:00
22 lines
552 B
JavaScript
22 lines
552 B
JavaScript
Volcanos("onimport", {
|
|
init: function(can, msg, cb, target, option) {
|
|
target.innerHTML = msg.result.join("")
|
|
},
|
|
})
|
|
Volcanos("onaction", {
|
|
copy: function(event, can, msg, cb, target, option) {
|
|
can.user.alert("hello world")
|
|
},
|
|
})
|
|
Volcanos("onchoice", {
|
|
list: ["copy", "复制", "下载"],
|
|
copy: function(event, can, msg, cb, target, option) {
|
|
can.user.alert("hello world")
|
|
},
|
|
})
|
|
Volcanos("ondetail", {
|
|
list: ["复制", "下载"],
|
|
copy: function(event, can, msg, cb, target, option) {
|
|
},
|
|
})
|