Files
EdgeAdmin/web/views/@default/servers/certs/uploadPopup.js

14 lines
267 B
JavaScript
Raw Normal View History

2020-09-30 17:46:38 +08:00
Tea.context(function () {
this.success = NotifyPopup
this.isCA = 0
this.textMode = false
this.switchTextMode = function () {
this.textMode = !this.textMode
2022-04-01 11:12:42 +08:00
if (this.textMode) {
this.$delay(function () {
this.$refs.certTextField.focus()
})
}
}
2020-09-30 17:46:38 +08:00
})