From ab175a340b1fc28ce1bb84ccf9fe4a654fa009a8 Mon Sep 17 00:00:00 2001 From: nate stemen Date: Mon, 3 Feb 2020 09:11:51 -0500 Subject: [PATCH] Merge pull request #2554 from overleaf/jpa-explicitly-polyfill-array-from [frontend] libraries: explicitly request the Array.from polyfill GitOrigin-RevId: cec64e4e94623b454de1103580f58de9a61d12f5 --- services/web/frontend/js/libraries.js | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/frontend/js/libraries.js b/services/web/frontend/js/libraries.js index 2af0b62dd1..8127b95e73 100644 --- a/services/web/frontend/js/libraries.js +++ b/services/web/frontend/js/libraries.js @@ -1,5 +1,6 @@ define([ 'core-js/stable/array/fill', + 'core-js/stable/array/from', 'core-js/stable/array/includes', 'jquery', 'angular',