YARN-7022. Improve click interaction in queue topology in new YARN UI. Contributed by Abdullah Yousufi.

This commit is contained in:
Sunil G 2017-09-05 08:06:43 +05:30
parent ef87d34a0e
commit ed162b7aa0
1 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ export default Ember.Component.extend({
var nodeEnter = node.enter().append("g")
.attr("class", "node")
.attr("transform", function() { return "translate(" + source.y0 + "," + source.x0 + ")"; })
.on("mouseover", function(d){
.on("click", function(d){
if (d.queueData.get("name") !== this.get("selected")) {
document.location.href = "#/yarn-queues/" + d.queueData.get("name") + "!";
}
@ -145,7 +145,7 @@ export default Ember.Component.extend({
}, 100);
}.bind(this))
.on("click", function (d) {
.on("dblclick", function (d) {
document.location.href = "#/yarn-queue/" + d.queueData.get("name") + "/info";
});