This commit is contained in:
Sam Potts 2015-05-18 15:10:40 +10:00
parent 224b612ae7
commit 7161378da1
5 changed files with 8 additions and 4 deletions

2
dist/plyr.js vendored

File diff suppressed because one or more lines are too long

2
docs/dist/docs.js vendored

File diff suppressed because one or more lines are too long

View File

@ -7,6 +7,7 @@
// Setup the player
plyr.setup({
debug: true,
volume: 9,
title: "Video demo",
html: templates.controls.render({}),
captions: {

View File

@ -1,6 +1,6 @@
{
"name": "plyr",
"version": "1.1.9",
"version": "1.1.10",
"description": "A simple HTML5 media player using custom controls",
"homepage": "http://plyr.io",
"main": "gulpfile.js",

View File

@ -1,6 +1,6 @@
// ==========================================================================
// Plyr
// plyr.js v1.1.9
// plyr.js v1.1.10
// https://github.com/selz/plyr
// License: The MIT License (MIT)
// ==========================================================================
@ -1156,6 +1156,8 @@
}
}
_log(volume);
// Maximum is 10
if(volume > 10) {
volume = 10;
@ -1624,6 +1626,7 @@
// Set volume
_setVolume();
_updateVolume();
// Setup fullscreen
_setupFullscreen();