Files
EdgeAdmin/web/views/@default/servers/components/ssl/selectPopup.js
2020-10-01 16:01:04 +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
}
}
})
}
})