diff options
author | Sam Potts <sam@potts.es> | 2017-06-12 09:26:01 +0700 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2017-06-12 09:26:01 +0700 |
commit | 21f444ed61d6e66ab7580a5d0e3d41077cc1902f (patch) | |
tree | 2088ef24e1d19d9e488f9a267cdff2f2e3d072f0 /src/js/plyr.js | |
parent | 40b4f8e8404c3f191ca4d4f40ae206c9dc72c4e1 (diff) | |
download | plyr-21f444ed61d6e66ab7580a5d0e3d41077cc1902f.tar.lz plyr-21f444ed61d6e66ab7580a5d0e3d41077cc1902f.tar.xz plyr-21f444ed61d6e66ab7580a5d0e3d41077cc1902f.zip |
Tweaks
Diffstat (limited to 'src/js/plyr.js')
-rw-r--r-- | src/js/plyr.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/js/plyr.js b/src/js/plyr.js index 392185dd..a63c4fa0 100644 --- a/src/js/plyr.js +++ b/src/js/plyr.js @@ -3094,7 +3094,7 @@ utils.off(container, utils.transitionEnd, restore) } - // Listen for the transtion finishing and restore auto height/width + // Listen for the transition finishing and restore auto height/width utils.on(container, utils.transitionEnd, restore); // Set dimensions to target @@ -3525,7 +3525,7 @@ } // Listen for control events - function controlListeners() { + function listeners() { // IE doesn't support input event, so we fallback to change var inputEvent = (player.browser.isIE ? 'change' : 'input'); @@ -4068,7 +4068,7 @@ injectControls(); // Re-attach listeners - controlListeners(); + listeners(); } // If there's no controls, bail |