From 27eb159a75dc85807c464cd28d51a61f4cf329de Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Wed, 25 Oct 2017 13:04:41 +0200 Subject: [PATCH] Add special popup handling for ie 11 --- client/coral-framework/components/Popup.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/coral-framework/components/Popup.js b/client/coral-framework/components/Popup.js index 33041442f..41a37237a 100644 --- a/client/coral-framework/components/Popup.js +++ b/client/coral-framework/components/Popup.js @@ -22,6 +22,9 @@ export default class Popup extends Component { ); this.setCallbacks(); + + // For some reasons IE needs a timeout before setting the callbacks... + setTimeout(() => this.setCallbacks(), 1000); } setCallbacks() {