Skip to content

Commit e016bbf

Browse files
committed
double click => click
1 parent d5c08fc commit e016bbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/resources/org/apache/spark/ui/static/additional-metrics.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ $(function() {
8484
});
8585

8686
// Trigger a double click on the span to show full job description.
87-
$(".description-input").dblclick(function() {
88-
$(this).removeClass("description-input").addClass("description-input-full");
87+
$(".description-input").click(function() {
88+
$(this).toggleClass("description-input-full");
8989
});
9090
});

0 commit comments

Comments
 (0)