Skip to content

Commit 4f635ed

Browse files
crisbetojelbourn
authored andcommittedJul 5, 2017
fix: include proper font and web animations polyfill (#209)
* 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.
1 parent 3a51d02 commit 4f635ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎material.angular.io/src/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
sizes="192x192">
1717
<link rel="manifest" href="assets/img/favicons/manifest.json">
1818
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
19-
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
19+
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono" rel="stylesheet">
2020
</head>
2121

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

0 commit comments

Comments
 (0)
Please sign in to comment.