Skip to content

Commit

Permalink
Replace polyfill provider in HTML templates.
Browse files Browse the repository at this point in the history
The PR replaces polyfill.io with cdnjs.cloudflare.com/polyfill.
polyfill.io has been acquired by Funnull, and the service has
become unstable.

This is essentially a cleaned up version of PR jgm#2384 by @SukkaW;
see the PR for more information.
  • Loading branch information
jgm committed Mar 1, 2024
1 parent 2549d34 commit 5877ec5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/templates/default.html4
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $for(header-includes)$
$endfor$
$if(math)$
$if(mathjax)$
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=es6"></script>
$endif$
$math$
$endif$
Expand Down
2 changes: 1 addition & 1 deletion data/templates/default.html5
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $for(header-includes)$
$endfor$
$if(math)$
$if(mathjax)$
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=es6"></script>
$endif$
$math$
$endif$
Expand Down

0 comments on commit 5877ec5

Please sign in to comment.