Skip to content

Commit

Permalink
fix(modal): change mask click handler to mousedown handler (#169) (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
abeluzhenko authored and pimenovoleg committed Oct 25, 2019
1 parent e3aa571 commit cfa8ad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mosaic/modal/modal.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[style.zIndex]="mcZIndex"
></div>
<div
(click)="onClickMask($event)"
(mousedown)="onClickMask($event)"
class="mc-modal-wrap {{ mcWrapClassName }}"
[style.zIndex]="mcZIndex"
[style.display]="hidden ? 'none' : ''"
Expand Down

0 comments on commit cfa8ad3

Please sign in to comment.