Skip to content

Commit

Permalink
Merge pull request elastic#8380 from elastic/jasper/backport/8364/5.x
Browse files Browse the repository at this point in the history
[backport] PR elastic#8364 to 5.x - Prevent visualization element from blocking mouse interaction in test:dev UI.
  • Loading branch information
cjcenizal authored Sep 20, 2016
2 parents a4df947 + 06794d2 commit 632c7fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fixtures/vislib/_vis_fixture.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ let $visCanvas = $('<div>')
position: 'fixed',
top: '0px',
left: '0px',
overflow: 'hidden'
overflow: 'hidden',
'pointer-events': 'none', // Prevent element from blocking you from clicking a test
})
.appendTo('body');

Expand Down

0 comments on commit 632c7fa

Please sign in to comment.