We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5341b3c + 3778cdd commit 4f3eb26Copy full SHA for 4f3eb26
src/features/move-columns/js/column-movable.js
@@ -235,7 +235,7 @@
235
if ($scope.col.colDef.enableColumnMoving) {
236
237
var mouseDownHandler = function (evt) {
238
- if (evt.toElement.className !== 'ui-grid-icon-angle-down') {
+ if (evt.target.className !== 'ui-grid-icon-angle-down' && evt.target.tagName !== 'I') {
239
240
//Cloning header cell and appending to current header cell.
241
var movingElm = $elm.clone();
0 commit comments