Files
EdgeAdmin/web/views/@default/api/node/createPopup.js

10 lines
208 B
JavaScript
Raw Normal View History

2020-09-06 16:19:34 +08:00
Tea.context(function () {
2020-10-10 20:28:36 +08:00
this.success = NotifyPopup
2020-10-04 14:27:05 +08:00
this.hasHTTPS = false
this.changeListens = function (addrs) {
this.hasHTTPS = addrs.$any(function (k, v) {
return v.protocol == "https"
})
}
2020-09-06 16:19:34 +08:00
})