Files
EdgeAdmin/web/views/@default/settings/user-nodes/node/createPopup.js
2020-12-14 21:24:21 +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"
})
}
})