add helpful comment for focusing 'workaround'

pull/2391/head
Mihail Maxacov 10 years ago
parent b09af0ab03
commit 4d964e6930
  1. 2
      frontend/app/ui_components/has-dropdown-menu-directive.js

@ -122,6 +122,8 @@ module.exports = function($injector, $window, $parse, FocusHelper) {
function close() {
ctrl.close();
// for some reason focusing on a TH causes some weird issues
// like the first th of the tr being selected
if (element.is('th')) {
element.focus();
} else {

Loading…
Cancel
Save