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

13 lines
270 B
JavaScript
Raw Normal View History

Tea.context(function () {
this.clusterId = 0
this.changeCluster = function(clusterId) {
this.clusterId = clusterId
}
this.goNext = function () {
if (this.clusterId > 0) {
window.location = "/clusters/cluster/createNode?clusterId=" + this.clusterId
}
}
})