Files
EdgeAdmin/web/views/@default/api/node/createPopup.js
2020-11-24 17:36:42 +08:00

8 lines
179 B
JavaScript

Tea.context(function () {
this.hasHTTPS = false
this.changeListens = function (addrs) {
this.hasHTTPS = addrs.$any(function (k, v) {
return v.protocol == "https"
})
}
})