Skip to content

Commit e4a3354

Browse files
committed
minor code style change
1 parent 878e3b8 commit e4a3354

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/timeline-view.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,15 +218,15 @@ function setupExecutorEventAction() {
218218
}
219219

220220
function setupZoomable(id, timeline) {
221-
$(id + '> input[type="checkbox"]').click(function() {
221+
$(id + ' > input[type="checkbox"]').click(function() {
222222
if (this.checked) {
223223
timeline.setOptions({zoomable: true});
224224
} else {
225225
timeline.setOptions({zoomable: false});
226226
}
227227
});
228228

229-
$(id + "> span").click(function() {
229+
$(id + " > span").click(function() {
230230
$(this).parent().find('input:checkbox').trigger('click');
231231
});
232232
}

0 commit comments

Comments
 (0)