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

8 lines
179 B
JavaScript
Raw Normal View History

2020-09-06 16:19:34 +08:00
Tea.context(function () {
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
})