Browse Source

#4237 remove console.log

pull/5122/merge
Jack Lukic 7 years ago
parent
commit
a26ee40612
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/dropdown.js

2
src/definitions/modules/dropdown.js

@ -1158,8 +1158,8 @@ $.fn.dropdown = function(parameters) {
hasSubMenu = ($subMenu.length > 0), hasSubMenu = ($subMenu.length > 0),
isBubbledEvent = ($subMenu.find($target).length > 0) isBubbledEvent = ($subMenu.find($target).length > 0)
; ;
// prevents IE11 bug where menu receives focus even though `tabindex=-1`
if(module.has.menuSearch()) { if(module.has.menuSearch()) {
console.log('zz');
$(document.activeElement).blur(); $(document.activeElement).blur();
} }
if(!isBubbledEvent && (!hasSubMenu || settings.allowCategorySelection)) { if(!isBubbledEvent && (!hasSubMenu || settings.allowCategorySelection)) {

Loading…
Cancel
Save