From b88efe3e044e3681a97dea79f8dda903bf8de915 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 11 Apr 2018 10:57:34 -0400 Subject: [PATCH] polyfill web animations --- package-lock.json | 5 +++++ package.json | 1 + src/popup/main.ts | 1 + 3 files changed, 7 insertions(+) diff --git a/package-lock.json b/package-lock.json index ac0f0c1daf8..a537d4651df 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14374,6 +14374,11 @@ "defaults": "1.0.3" } }, + "web-animations-js": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/web-animations-js/-/web-animations-js-2.3.1.tgz", + "integrity": "sha1-Om2bwVGWN3qQ+OKAP6UmIWWwRRA=" + }, "web-ext": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/web-ext/-/web-ext-2.0.0.tgz", diff --git a/package.json b/package.json index e3b65bc9e22..86291b2c664 100644 --- a/package.json +++ b/package.json @@ -106,6 +106,7 @@ "node-forge": "0.7.1", "papaparse": "4.3.5", "rxjs": "5.5.6", + "web-animations-js": "2.3.1", "zone.js": "0.8.19" } } diff --git a/src/popup/main.ts b/src/popup/main.ts index 2fe38139562..faeadb8a70b 100644 --- a/src/popup/main.ts +++ b/src/popup/main.ts @@ -1,5 +1,6 @@ import { enableProdMode } from '@angular/core'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; +import 'web-animations-js'; // tslint:disable-next-line require('./scss/popup.scss');