Skip to content

Commit

Permalink
fix(Column Resizing): Prevent selection in IE9
Browse files Browse the repository at this point in the history
IE9 requires a `unselectable="on"` property for preventing selection.
Adding this to the resizer elements seems to have fixed the issue.

Fixes #2594
  • Loading branch information
c0bra committed Mar 30, 2015
1 parent a484c28 commit 7375c49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/features/resize-columns/templates/columnResizer.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
class="ui-grid-column-resizer"
col="col"
position="right"
render-index="renderIndex">
render-index="renderIndex"
unselectable="on">
</div>

0 comments on commit 7375c49

Please sign in to comment.