Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 560 Bytes

polyfills.md

File metadata and controls

24 lines (16 loc) · 560 Bytes
title order
Polyfills
800

Polyfills

Depending on the browser and environment that your application targets, some polyfills may be required. This page lists the recommended polyfills.

Event() constructor

Scully uses Event to be aware of different points in the application's lifecycle.

To make Internet Explorer 10+ work, install the following polyfill:

npm install events-polyfill

// src/polyfills.ts

import 'events-polyfill/src/constructors/Event.js';