Skip to content

Commit

Permalink
fix(features): clear cell focus when grid loses focus (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffRiggle authored May 28, 2019
1 parent 145e7e5 commit f7723e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/features/cellnav/js/cellnav.js
Original file line number Diff line number Diff line change
Expand Up @@ -917,6 +917,10 @@
}
});

focuser.on('blur', function (evt) {
uiGridCtrl.cellNav.clearFocus();
});

uiGridCellnavCtrl.setAriaActivedescendant = function(id){
$elm.attr('aria-activedescendant', id);
};
Expand Down

0 comments on commit f7723e1

Please sign in to comment.