Skip to content

Commit

Permalink
fix: include proper font and web animations polyfill (angular#209)
Browse files Browse the repository at this point in the history
* Includes the `Roboto` font from Google Fonts. Previously only `Roboto Mono` was included.
* Includes the Web animations polyfill in order for the component animations to work on all browsers.
  • Loading branch information
crisbeto authored and jelbourn committed Jul 5, 2017
1 parent e5e0677 commit e450446
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
sizes="192x192">
<link rel="manifest" href="assets/img/favicons/manifest.json">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono" rel="stylesheet">
</head>

<body class="docs-app-background">
Expand All @@ -28,5 +28,6 @@
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<script src="https://ajax.googleapis.com/ajax/libs/hammerjs/2.0.8/hammer.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/web-animations/2.2.5/web-animations.min.js"></script>
</body>
</html>

0 comments on commit e450446

Please sign in to comment.