Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dmartinezbaselga committed May 30, 2019
2 parents 5a01cd5 + 702c480 commit 203b731
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
3 changes: 3 additions & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# production
/build

#Comprimidos
*.zip

#vscode settings
/.vscode

Expand Down
Binary file removed app/build.zip
Binary file not shown.
Binary file added app/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 8 additions & 2 deletions app/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,24 @@
<html lang="es">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<link
rel="icon"
type="image/png"
href="%PUBLIC_URL%/favicon-16x16.png"
sizes="16x16"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />

<meta name="theme-color" content="#ffffff" />

<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
Expand Down
8 changes: 4 additions & 4 deletions app/public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"name": "Aplicación Web UniCast",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
"src": "favicon-16x16.png",
"sizes": "16x16",
"type": "image/png"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"theme_color": "#ffffff",
"background_color": "#ffffff"
}
2 changes: 1 addition & 1 deletion app/src/components/Video.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class Video extends Component {
<CurrentTimeDisplay order={4.1} />
<TimeDivider order={4.2} />
<PlaybackRateMenuButton rates={[5, 2, 1, 0.5, 0.1]} order={7.1} />
<VolumeMenuButton disabled />
<VolumeMenuButton vertical />
</ControlBar>
</Player>
</div>
Expand Down

0 comments on commit 203b731

Please sign in to comment.