Merge branch 'master' of github.com:sampotts/plyr

This commit is contained in:
Sam Potts
2018-04-11 21:52:36 +10:00
3 changed files with 3 additions and 3 deletions

2
src/js/controls.js vendored
View File

@ -1233,7 +1233,7 @@ const controls = {
// Inject controls HTML // Inject controls HTML
if (utils.is.element(container)) { if (utils.is.element(container)) {
target.appendChild(container); target.appendChild(container);
} else { } else if (container) {
target.insertAdjacentHTML('beforeend', container); target.insertAdjacentHTML('beforeend', container);
} }

View File

@ -193,7 +193,7 @@ class Fullscreen {
} else if (!Fullscreen.native) { } else if (!Fullscreen.native) {
toggleFallback.call(this, false); toggleFallback.call(this, false);
} else if (!this.prefix) { } else if (!this.prefix) {
document.cancelFullScreen(); (document.cancelFullScreen || document.exitFullscreen).call(document);
} else if (!utils.is.empty(this.prefix)) { } else if (!utils.is.empty(this.prefix)) {
const action = this.prefix === 'moz' ? 'Cancel' : 'Exit'; const action = this.prefix === 'moz' ? 'Cancel' : 'Exit';
document[`${this.prefix}${action}${this.name}`](); document[`${this.prefix}${action}${this.name}`]();

View File

@ -19,7 +19,7 @@
&::-webkit-slider-runnable-track { &::-webkit-slider-runnable-track {
@include plyr-range-track(); @include plyr-range-track();
background-image: linear-gradient(to right, currentColor var(--value), transparent var(--value)); background-image: linear-gradient(to right, currentColor var(--value, 0%), transparent var(--value, 0%));
} }
&::-webkit-slider-thumb { &::-webkit-slider-thumb {