Skip to content

Commit

Permalink
Merge pull request #2031 from jpuri/master
Browse files Browse the repository at this point in the history
Fix for issues #2014 and partially #1815
  • Loading branch information
PaulL1 committed Nov 6, 2014
2 parents 5341b3c + 3778cdd commit 4f3eb26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/move-columns/js/column-movable.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
if ($scope.col.colDef.enableColumnMoving) {

var mouseDownHandler = function (evt) {
if (evt.toElement.className !== 'ui-grid-icon-angle-down') {
if (evt.target.className !== 'ui-grid-icon-angle-down' && evt.target.tagName !== 'I') {

//Cloning header cell and appending to current header cell.
var movingElm = $elm.clone();
Expand Down

0 comments on commit 4f3eb26

Please sign in to comment.