Files
EdgeAdmin/web/views/@default/servers/components/ssl/selectPopup.js

14 lines
194 B
JavaScript
Raw Normal View History

2020-10-01 16:01:04 +08:00
Tea.context(function () {
this.selectCert = function (cert) {
NotifyPopup({
code: 200,
data: {
cert: cert,
certRef: {
isOn: true,
certId: cert.id
}
}
})
}
})