From 73a39769d4cc3d5d04e272ca571c849a0d8adfd6 Mon Sep 17 00:00:00 2001 From: Sam Potts Date: Sun, 11 Feb 2018 15:09:34 +1100 Subject: Fullscreen API changes, color settings tweaks --- src/js/ui.js | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/js/ui.js') diff --git a/src/js/ui.js b/src/js/ui.js index 14724fc6..e6c77a00 100644 --- a/src/js/ui.js +++ b/src/js/ui.js @@ -5,7 +5,6 @@ import utils from './utils'; import captions from './captions'; import controls from './controls'; -import fullscreen from './fullscreen'; import listeners from './listeners'; const ui = { @@ -63,9 +62,6 @@ const ui = { // Remove native controls ui.toggleNativeControls.call(this); - // Setup fullscreen - fullscreen.setup.call(this); - // Captions captions.setup.call(this); -- cgit v1.2.3 From 6a9be8d16b9fba408f92643471b00f10893032ce Mon Sep 17 00:00:00 2001 From: Sam Potts Date: Tue, 13 Feb 2018 00:01:19 +1100 Subject: Fix for custom controls --- src/js/ui.js | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/js/ui.js') diff --git a/src/js/ui.js b/src/js/ui.js index e6c77a00..5a52543d 100644 --- a/src/js/ui.js +++ b/src/js/ui.js @@ -32,12 +32,6 @@ const ui = { if (!this.supported.ui) { this.debug.warn(`Basic support only for ${this.provider} ${this.type}`); - // Remove controls - utils.removeElement.call(this, 'controls'); - - // Remove large play - utils.removeElement.call(this, 'buttons.play'); - // Restore native controls ui.toggleNativeControls.call(this, true); -- cgit v1.2.3