Compare commits

..

2 Commits

Author SHA1 Message Date
5f96172dbd Bumping version 2015-02-19 23:18:39 +11:00
2bd6a8390c Fix for empty local storage 2015-02-19 23:16:51 +11:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
// ==========================================================================
// Plyr
// plyr.js v1.0.7
// plyr.js v1.0.8
// https://github.com/sampotts/plyr
// ==========================================================================
// Credits: http://paypal.github.io/accessible-html5-video-player/
@ -794,7 +794,7 @@
// Use default if needed
if(typeof volume === "undefined") {
if(config.storage.enabled && config.storage.supported) {
volume = window.localStorage.plyr_volume;
volume = window.localStorage.plyr_volume || config.volume;
}
else {
volume = config.volume;

2
dist/js/plyr.js vendored

File diff suppressed because one or more lines are too long