forked from single-spa/import-map-overrides
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix IE11 custom events. Resolves single-spa#58. * Fix IE11
- Loading branch information
1 parent
d68f603
commit 5faf9e7
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<title>Import Map Overrides test</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<meta name="importmap-type" content="systemjs-importmap" /> | ||
|
||
<script> | ||
window.addEventListener("import-map-overrides:init", function (evt) { | ||
console.log("Init event fired", evt); | ||
}); | ||
</script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/browser/bluebird.min.js"></script> | ||
<script src="/import-map-overrides.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/systemjs/dist/system.js"></script> | ||
</head> | ||
<body> | ||
<import-map-overrides-full dev-libs></import-map-overrides-full> | ||
</body> | ||
</html> |