---------

**Commit 1:**
Prevent visualization element from blocking mouse interaction in test:dev UI.

* Original sha: 9907f93086
* Authored by CJ Cenizal <cj@cenizal.com> on 2016-09-20T02:12:22Z
This commit is contained in:
Elastic Jasper 2016-09-20 13:54:59 -04:00
parent 0c2ff0f189
commit 240876d36c

View file

@ -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');