angular2-emoji icon indicating copy to clipboard operation
angular2-emoji copied to clipboard

html template with [hidden] fails in IE9/10

Open JcDestiny opened this issue 7 years ago • 0 comments

On the ie10, the emoji selection box pops up automatically. eg:<div class="emoji-search" [ngClass]="popupAnchor" [hidden]="!popupOpen "> you should replace it with <div class="emoji-search" [ngClass]="popupAnchor" [style.display]="popupOpen ? 'block' : 'none'">, so you can show it correctly!

JcDestiny avatar Oct 17 '17 09:10 JcDestiny