We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 878e3b8 commit e4a3354Copy full SHA for e4a3354
core/src/main/resources/org/apache/spark/ui/static/timeline-view.js
@@ -218,15 +218,15 @@ function setupExecutorEventAction() {
218
}
219
220
function setupZoomable(id, timeline) {
221
- $(id + '> input[type="checkbox"]').click(function() {
+ $(id + ' > input[type="checkbox"]').click(function() {
222
if (this.checked) {
223
timeline.setOptions({zoomable: true});
224
} else {
225
timeline.setOptions({zoomable: false});
226
227
});
228
229
- $(id + "> span").click(function() {
+ $(id + " > span").click(function() {
230
$(this).parent().find('input:checkbox').trigger('click');
231
232
0 commit comments