Skip to content

Commit

Permalink
Merge pull request #8379 from elastic/jasper/backport/8364/5.0
Browse files Browse the repository at this point in the history
[backport] PR #8364 to 5.0 - Prevent visualization element from blocking mouse interaction in test:dev UI.
  • Loading branch information
cjcenizal authored Sep 20, 2016
2 parents b297a54 + 240876d commit d621f5c
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 d621f5c

Please sign in to comment.