Merge pull request #8364 from cjcenizal/improvement/test-dev-ui

Prevent visualization element from blocking mouse interaction in test:dev UI.
This commit is contained in:
CJ Cenizal 2016-09-20 10:54:42 -07:00 committed by GitHub
commit 2dbe4b98c5

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