From 42d72c530335b553319e114b675be337d326e0f3 Mon Sep 17 00:00:00 2001 From: Suman Bhattarai Date: Tue, 3 Dec 2019 10:34:27 -0700 Subject: fix being unable to unmute autoplayed video on IOS --- src/js/controls.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/js/controls.js') diff --git a/src/js/controls.js b/src/js/controls.js index 7afcd2c0..76b15dda 100644 --- a/src/js/controls.js +++ b/src/js/controls.js @@ -1380,7 +1380,7 @@ const controls = { } // Volume range control - if (control === 'volume') { + if (control === 'volume' && !browser.isIos) { // Set the attributes const attributes = { max: 1, -- cgit v1.2.3