Files
EdgeAdmin/web/views/@default/clusters/index.js

18 lines
326 B
JavaScript
Raw Normal View History

2021-05-03 11:32:59 +08:00
Tea.context(function () {
this.latestVisible = false
this.showLatest = function () {
this.latestVisible = !this.latestVisible
}
2022-03-17 11:12:24 +08:00
this.pin = function (clusterId, isPinned) {
this.$post(".pin")
.params({
clusterId: clusterId,
isPinned: isPinned
})
.success(function () {
teaweb.reload()
})
}
2021-05-03 11:32:59 +08:00
})