Merge pull request #1692 from sampotts/develop

v3.5.10
This commit is contained in:
Sam Potts 2020-02-14 17:33:41 +00:00 committed by GitHub
commit a34bc3ef29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,7 @@
### v3.5.10
- iOS volume display fix
### v3.5.9
- Fix for regression with volume control width

2
demo/dist/demo.css vendored

File diff suppressed because one or more lines are too long

2
dist/plyr.css vendored

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "plyr",
"version": "3.5.9",
"version": "3.5.10",
"description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player",
"homepage": "https://plyr.io",
"author": "Sam Potts <sam@potts.es>",

View File

@ -17,3 +17,9 @@
z-index: 2;
}
}
// Auto size on iOS as there's no slider
.plyr--is-ios .plyr__volume {
min-width: 0;
width: auto;
}