add error handling to recording parsing
This commit is contained in:
@@ -47,14 +47,14 @@
|
||||
margin: 4px;
|
||||
}
|
||||
|
||||
@media all and (max-width: 600px) {
|
||||
@media all and (max-width: 500px) {
|
||||
|
||||
.cardBox {
|
||||
margin: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (min-width: 800px) {
|
||||
@media all and (min-width: 500px) {
|
||||
|
||||
.cardImage {
|
||||
border-radius: 3px;
|
||||
|
||||
@@ -278,7 +278,7 @@ html {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
font-family: 'San Francisco', 'Helvetica Neue', 'Open Sans', 'Segoe UI', sans-serif;
|
||||
font-family: 'San Francisco', 'Helvetica Neue', Roboto, 'Open Sans', 'Segoe UI', sans-serif;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
||||
@@ -2310,9 +2310,10 @@ var AppInfo = {};
|
||||
|
||||
postInitDependencies.push('components/remotecontrolautoplay');
|
||||
|
||||
// Prefer OpenSans over Segoe if on desktop windows
|
||||
// Prefer custom font over Segoe if on desktop windows
|
||||
if (!browserInfo.mobile && navigator.userAgent.toLowerCase().indexOf('windows') != -1) {
|
||||
postInitDependencies.push('opensansFont');
|
||||
//postInitDependencies.push('opensansFont');
|
||||
postInitDependencies.push('robotoFont');
|
||||
}
|
||||
|
||||
require(postInitDependencies);
|
||||
|
||||
Reference in New Issue
Block a user