aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | fix: when the seek input is focused and the video is playing, the space key ↵cky2018-06-061-0/+6
| | | | | | | | can't make the video pause, because after 'keyup', it always make the video play
* | fix: https://github.com/sampotts/plyr/issues/1006cky2018-06-061-1/+4
|/
* Merge branch 'master' of github.com:sampotts/plyrSam Potts2018-05-3110-124/+116
|\ | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # demo/dist/demo.css # dist/plyr.css # dist/plyr.js.map # dist/plyr.min.js # dist/plyr.min.js.map # dist/plyr.polyfilled.js.map # dist/plyr.polyfilled.min.js # dist/plyr.polyfilled.min.js.map
| * Fixed incorrect BEM formatting, fixed buffer alignmentSam Potts2018-05-313-18/+21
| |
| * Merge pull request #988 from kim-company/translate-qualitiesSam Potts2018-05-315-26/+28
| |\ | | | | | | Translate quality badges and quality names
| | * Rename qualityName to labelPhilip Giuliani2018-05-311-3/+3
| | |
| | * Refactor getDeep methodPhilip Giuliani2018-05-301-1/+1
| | |
| | * Return undefined when the key is not present.Philip Giuliani2018-05-301-2/+2
| | |
| | * Add getDeep method to utilsPhilip Giuliani2018-05-302-1/+6
| | |
| | * Implement translation support for qualityName and qualityBadgePhilip Giuliani2018-05-302-23/+16
| | |
| | * Allow nested translationsPhilip Giuliani2018-05-301-2/+6
| | |
| | * Accept quality 0Philip Giuliani2018-05-301-1/+1
| | |
| * | Wait for the metadata to be loaded before setting the currentTimePhilip Giuliani2018-05-311-3/+7
| |/
| * Merge pull request #981 from friday/hls-captionsSam Potts2018-05-305-77/+54
| |\ | | | | | | Improve captions handling for streaming
| | * Defer initial captions update to next tick, to avoid event being triggered ↵Albin Larsson2018-05-281-2/+2
| | | | | | | | | | | | to early
| | * Change to using addtrack and removetrack listeners since 'change' didn't ↵Albin Larsson2018-05-281-1/+1
| | | | | | | | | | | | trigger in firefox for embedded captions (may also be a hls.js issue)
| | * Replace browser language detection in defaults.js with explicit 'auto' optionAlbin Larsson2018-05-282-2/+6
| | |
| | * Fix typoAlbin Larsson2018-05-281-1/+1
| | |
| | * Ensure language is set in case the track is added after initialization, and ↵Albin Larsson2018-05-282-17/+9
| | | | | | | | | | | | trigger languagechange event when language is initially set
| | * Add option to watch caption track changes and update language optionsAlbin Larsson2018-05-282-0/+8
| | |
| | * Optimize captions code reused and ensure captionsenabled/captionsdisabledAlbin Larsson2018-05-283-59/+32
| | | | | | | | | | | | will be sent on initial setup
| * | Call duration update method manually if user config has durationAlbin Larsson2018-05-291-0/+6
| | |
* | | v3.3.10Sam Potts2018-05-313-3/+3
|/ /
* / v3.3.9Sam Potts2018-05-283-3/+3
|/
* Merge pull request #979 from friday/respect-storageSam Potts2018-05-281-1/+1
|\ | | | | Respect storage being disabled for storage getter
| * If storage is disabled, disable get as well, not just setAlbin Larsson2018-05-281-1/+1
| |
* | Merge pull request #977 from friday/utils.is.icue-ie11Sam Potts2018-05-281-1/+1
|\ \ | | | | | | Restore utils.is.cue()
| * | Restore utils.is.cue()Albin Larsson2018-05-271-1/+1
| |/
* | Simplify currentTime setter and bail when media hasn't loadedAlbin Larsson2018-05-281-11/+6
| |
* | Avoid duration getter returning NaN before element has loadedAlbin Larsson2018-05-281-4/+4
|/
* v3.3.8Sam Potts2018-05-264-4/+3
|
* TypoSam Potts2018-05-201-4/+5
|
* Pause while seekingSam Potts2018-05-201-10/+33
|
* Add URL polyfillSam Potts2018-05-201-0/+1
|
* Prevent durationchange events from showing time when invertTime is falseAlbin Larsson2018-05-191-2/+3
|
* Fix #966: Add 'seeked' event listener to update progress (seeking doesn't ↵Albin Larsson2018-05-192-2/+3
| | | | have the correct time)
* Fix #921: Trigger seeked event in youtube plugin if either playing or pausedAlbin Larsson2018-05-191-6/+11
|
* Fix #876: YouTube and Vimeo autoplays on seekAlbin Larsson2018-05-192-48/+50
|
* Fix playback state (paused) and events (play/pause)Albin Larsson2018-05-192-23/+30
|
* Merge branch 'master' into developSam Potts2018-05-193-2/+25
|\
| * Merge pull request #958 from friday/954Sam Potts2018-05-193-2/+25
| |\ | | | | | | Fix the seek tooltip time difference from seek time
| | * Add event before seeking via mouse interaction to set alternative 'value' ↵Albin Larsson2018-05-141-1/+19
| | | | | | | | | | | | for the input matching the tooltip time
| | * Fix the seek tooltip time difference from seek timeAlbin Larsson2018-05-122-1/+6
| | |
* | | Merge pull request #963 from friday/verify-posterSam Potts2018-05-197-21/+68
|\ \ \ | | | | | | | | Make sure poster element isn't shown if the image isn't loaded
| * | | Youtube poster: Set css backgroundSize to 'cover' for padded youtube thumbnailsAlbin Larsson2018-05-152-3/+14
| | | |
| * | | Rewrite ui.setPoster to check that images arent broken or youtube fallback ↵Albin Larsson2018-05-156-21/+42
| | | | | | | | | | | | | | | | images. Only show poster element when valid
| * | | Add async method to utils for loading/checking imagesAlbin Larsson2018-05-151-0/+15
| | |/ | |/|
* | | Merge pull request #967 from friday/883Sam Potts2018-05-197-189/+103
|\ \ \ | |_|/ |/| | toggleControls rewrite
| * | toggleControls() rewriteAlbin Larsson2018-05-183-134/+99
| | |
| * | Remove ui.checkFailed() and error classAlbin Larsson2018-05-165-53/+0
| | |