FIX: Don't try to boot the ember app on old browsers (#14423)
This commit is contained in:
parent
e8182a133a
commit
38b8eb5971
|
@ -1,4 +1,7 @@
|
|||
(function () {
|
||||
if (window.unsupportedBrowser) {
|
||||
throw "Unsupported browser detected";
|
||||
}
|
||||
// TODO: These are needed to load plugins because @ember has its own loader.
|
||||
// We should find a nicer way to do this.
|
||||
const EMBER_MODULES = {
|
||||
|
|
Loading…
Reference in New Issue