Skip to content

Commit

Permalink
Fixed primefaces#8181 Esc keyboard click is not hiding MultiSelect ov…
Browse files Browse the repository at this point in the history
…erlay
  • Loading branch information
yigitfindikli committed Oct 28, 2019
1 parent 2e35085 commit 400078b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/multiselect/multiselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class MultiSelectItem {
<span class="ui-multiselect-trigger-icon ui-clickable" [ngClass]="dropdownIcon"></span>
</div>
<div *ngIf="overlayVisible" [ngClass]="['ui-multiselect-panel ui-widget ui-widget-content ui-corner-all ui-shadow']" [@overlayAnimation]="{value: 'visible', params: {showTransitionParams: showTransitionOptions, hideTransitionParams: hideTransitionOptions}}" (@overlayAnimation.start)="onOverlayAnimationStart($event)"
[ngStyle]="panelStyle" [class]="panelStyleClass" (click)="panelClick=true">
[ngStyle]="panelStyle" [class]="panelStyleClass" (click)="panelClick=true" (keydown)="onKeydown($event)">
<div class="ui-widget-header ui-corner-all ui-multiselect-header ui-helper-clearfix" [ngClass]="{'ui-multiselect-header-no-toggleall': !showToggleAll}" *ngIf="showHeader">
<ng-content select="p-header"></ng-content>
<div class="ui-chkbox ui-widget" *ngIf="showToggleAll && !selectionLimit">
Expand Down

0 comments on commit 400078b

Please sign in to comment.