Files
EdgeAdmin/web/views/@default/settings/user-nodes/node/createPopup.js

8 lines
179 B
JavaScript
Raw Normal View History

2020-12-14 21:24:21 +08:00
Tea.context(function () {
this.hasHTTPS = false
this.changeListens = function (addrs) {
this.hasHTTPS = addrs.$any(function (k, v) {
return v.protocol == "https"
})
}
})