From 8a1224bcd53ff4d4d177965652a653585d7737d1 Mon Sep 17 00:00:00 2001 From: Thorsten Basse Date: Wed, 13 Jan 2016 17:23:38 +1100 Subject: [PATCH] Stop using the polyfill when you are assign the es6-promise after that anyway es6-promise.polyfill() is broken for Chrome atm and replaces the native Promise and swallows unhandled errors. https://github.com/jakearchibald/es6-promise/issues/70 --- JitsiMeetJS.js | 1 - 1 file changed, 1 deletion(-) diff --git a/JitsiMeetJS.js b/JitsiMeetJS.js index 965cfc967..02a08d814 100644 --- a/JitsiMeetJS.js +++ b/JitsiMeetJS.js @@ -121,7 +121,6 @@ var LibJitsiMeet = { } }; -require("es6-promise").polyfill() //Setups the promise object. window.Promise = window.Promise || require("es6-promise").Promise;