diff options
author | Sam Potts <me@sampotts.me> | 2017-07-09 17:17:26 +1000 |
---|---|---|
committer | Sam Potts <me@sampotts.me> | 2017-07-09 17:17:26 +1000 |
commit | dfc516baf636dd1fff640ee866a764135231cc85 (patch) | |
tree | 0f32c796a80bdc09dc07f273f353673f7f6134cd /src/js/plyr.js | |
parent | b0d3bcd15a7d95fd860bf04c461d66647bb139ed (diff) | |
parent | 03c3960e939c54bf3c80ebb6b9ea364286deaab5 (diff) | |
download | plyr-dfc516baf636dd1fff640ee866a764135231cc85.tar.lz plyr-dfc516baf636dd1fff640ee866a764135231cc85.tar.xz plyr-dfc516baf636dd1fff640ee866a764135231cc85.zip |
Merge branch 'develop' of https://github.com/Selz/plyr into develop
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 |