Files
EdgeAdmin/web/views/@default/servers/certs/selectPopup.js
2020-11-24 17:36:42 +08:00

14 lines
194 B
JavaScript

Tea.context(function () {
this.selectCert = function (cert) {
NotifyPopup({
code: 200,
data: {
cert: cert,
certRef: {
isOn: true,
certId: cert.id
}
}
})
}
})