diff options
author | Sam Potts <sam@selz.com> | 2018-02-17 09:22:19 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-17 09:22:19 +1100 |
commit | 7ac732f45b961301f56877a61d7607b3232537f0 (patch) | |
tree | 3f6b9dbc32912a990d0bf1094c5bd33623eb8f59 /src/js/ui.js | |
parent | a59dcb2f53bfbe87812611b35832e1e0ba0f8daa (diff) | |
parent | c90f1bdf08c002b55e92222583f994433239fb37 (diff) | |
download | plyr-7ac732f45b961301f56877a61d7607b3232537f0.tar.lz plyr-7ac732f45b961301f56877a61d7607b3232537f0.tar.xz plyr-7ac732f45b961301f56877a61d7607b3232537f0.zip |
Merge branch 'beta' into gulp-unminified-js-output
Diffstat (limited to 'src/js/ui.js')
-rw-r--r-- | src/js/ui.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/js/ui.js b/src/js/ui.js index 14724fc6..5a52543d 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 = { @@ -33,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); @@ -63,9 +56,6 @@ const ui = { // Remove native controls ui.toggleNativeControls.call(this); - // Setup fullscreen - fullscreen.setup.call(this); - // Captions captions.setup.call(this); |