Selections don't absorb click events

Clicking on a selection was causing the click event not to reach the editor, which was causing the editor to lose focus. Using CSS to disallow pointer events on selection region elements fixes this.
This commit is contained in:
Nathan Sobo 2012-06-29 13:34:01 -06:00
parent 99db024dbb
commit 4aed73d947

View File

@ -107,4 +107,5 @@
position: absolute;
background: white;
opacity: .25;
pointer-events: none;
}