Skip to content

Commit

Permalink
Merge pull request #3705 from DustinEwers/master
Browse files Browse the repository at this point in the history
Bug fix for #3657 -
  • Loading branch information
cagataycivici authored Aug 22, 2017
2 parents f89a6c9 + de7241e commit d30ce36
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/app/components/dropdown/dropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -468,9 +468,11 @@ export class Dropdown implements OnInit,AfterViewInit,AfterContentInit,AfterView

//space
case 32:
this.show();

event.preventDefault();
case 32:
if(!this.panelVisible){
this.show();
event.preventDefault();
}
break;

//enter
Expand Down

0 comments on commit d30ce36

Please sign in to comment.