Revert "FIX: Detect more unsupported browsers"

This change broke IE11 support, even with the polyfills enabled. We may need to add a WeakSet polyfill, but reverting this change for now.

This reverts commit 1cd8c6ce4c.
This commit is contained in:
David Taylor 2020-04-17 16:41:47 +01:00
parent 9c40c42bb5
commit 4eebbd2212
No known key found for this signature in database
GPG Key ID: 46904C18B1D3F434
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
if (!window.WeakMap || !window.WeakSet || !window.Promise) {
if (!window.WeakMap || !window.Promise) {
window.unsupportedBrowser = true;
}