aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Source API changes, Vimeo fixes, still WIPSam Potts2015-10-0422-366/+537
|
* Icon tweaks, other small tweaksSam Potts2015-10-0316-53/+52
|
* MergeSam Potts2015-08-273-3/+3
|
* Merge branch 'master' into developSam Potts2015-08-2732-370/+675
|\ | | | | | | | | | | | | | | | | # Conflicts: # dist/plyr.css # dist/plyr.js # docs/dist/docs.css # docs/src/less/components/examples.less # src/js/plyr.js
| * Fixed bug with API use on basic supported browsersSam Potts2015-08-219-17/+33
| |
| * Code cleanupSam Potts2015-08-137-13/+16
| |
| * Merge pull request #111 from calvintam236/masterSam Potts2015-08-131-470/+466
| |\ | | | | | | Code cleanup
| | * Fixed equal signsCalvin Tam2015-08-131-6/+6
| | |
| | * Converted double quote to single quoteCalvin Tam2015-08-131-288/+288
| | |
| | * Fixed syntax; Fixed some JSHint errors (Not escaped character, etc.)Calvin Tam2015-08-131-12/+10
| | |
| | * Fixed missing semicolons mentioned by JSHintCalvin Tam2015-08-131-7/+7
| | |
| | * Updated tag closingCalvin Tam2015-08-131-11/+11
| | |
| | * Use defined function instead of hard codingCalvin Tam2015-08-131-1/+1
| | |
| | * Use double quote for html stringsCalvin Tam2015-08-121-75/+75
| | |
| | * Removed unnecessary "break"sCalvin Tam2015-08-121-4/+0
| | |
| | * Removed useless spacesCalvin Tam2015-08-121-25/+25
| | |
| | * Standardized syntaxCalvin Tam2015-08-121-110/+112
| |/
| * Merge branch 'master' of github.com:selz/plyrSam Potts2015-08-111-4/+4
| |\
| | * Merge pull request #108 from ChristianPV/patch-2Sam Potts2015-08-101-4/+4
| | |\ | | | | | | | | Update plyr.scss - Fix new scss!
| | | * Update plyr.scss - Fix new scss!khrizpv2015-08-101-4/+4
| | |/ | | | | | | This is a fix the newly added scss.
| * / Removed captions being read by screen readersSam Potts2015-08-117-14/+18
| |/
| * DocsSam Potts2015-08-091-1/+1
| |
| * Version bumpSam Potts2015-08-081-1/+1
| |
| * Merge branch 'master' of github.com:selz/plyrSam Potts2015-08-081-2/+2
| |\
| | * Update readme.mdSam Potts2015-08-081-2/+2
| | |
| * | Fix for voiceoverSam Potts2015-08-087-17/+27
| |/
| * TypoSam Potts2015-08-081-2/+2
| |
| * ARIA improvements for caption readingSam Potts2015-08-087-20/+25
| |
| * ReadmeSam Potts2015-08-081-2/+3
| |
| * YouTube, Captions and Control improvementsSam Potts2015-08-0814-215/+247
| | | | | | | | | | | | | | - Controls improvements (Fixes #103) - YouTube bug fixes (Fixes #105) - Internationalization support (Fixes #101) - Captions legibility improvements
| * Merge branch 'master' of github.com:selz/plyrSam Potts2015-08-082-23/+17
| |\
| | * Merge pull request #106 from calvintam236/masterSam Potts2015-08-081-4/+5
| | |\ | | | | | | | | Fixed certain YouTube player issues
| | | * Revert "Eliminated running try catch when player.type="youtube""Calvin Tam2015-08-051-9/+8
| | | | | | | | | | | | | | | | This reverts commit 5fcfd5fa4f56f657a53de24c20f8522c37241e0d.
| | | * Disabled YouTube embed player keyboard control to match with plyr's controlCalvin Tam2015-08-051-1/+2
| | | |
| | | * Eliminated running try catch when player.type="youtube"Calvin Tam2015-08-051-8/+9
| | | |
| | | * Fixed youtube video cannot seek before video started with controlsCalvin Tam2015-08-051-1/+1
| | | |
| | | * Fixed events are not fired in YouTube embed playerCalvin Tam2015-08-051-2/+2
| | | |
| | * | Merge pull request #107 from ChristianPV/patch-1Sam Potts2015-08-071-2/+2
| | |\ \ | | | |/ | | |/| Update plyr.scss - Make it work V3!
| | | * Update plyr.scss - Make it work V3!khrizpv2015-08-061-2/+2
| | | |
| | * | Merge pull request #104 from ChristianPV/patch-1Sam Potts2015-08-011-17/+10
| | |\| | | | | | | | | Update plyr.scss - Make it work V2!
| | | * Update plyr.scss - Make it work V2!khrizpv2015-07-311-17/+10
| | |/ | | | | | | Hi, thanks for accepting my previous pull request. I made this request because the variables control-color and control-color-hover weren't being set inside the mixin so i took them out and it's working now again. I hope you can merge this as it isnt completly working yet and sorry for the delay. Thanks again! :)
| * / Icon updatesSam Potts2015-08-0813-45/+13
| |/
| * Merge branch 'master' of github.com:selz/plyrSam Potts2015-07-317-117/+130
| |\ | | | | | | | | | | | | # Conflicts: # src/sass/plyr.scss
| | * Version bumpSam Potts2015-07-286-12/+15
| | |
| | * Restored !default and fullscreen logic in SASSSam Potts2015-07-281-44/+51
| | |
| | * Merge pull request #102 from ChristianPV/patch-1Sam Potts2015-07-281-125/+128
| | |\ | | | | | | | | Update plyr.scss - Make it work
| | | * Update plyr.scss - Make it workkhrizpv2015-07-271-125/+128
| | |/ | | | | | | There were some things that needed to be changed for the sass preprocessor to work. There were some variables declared as @ that need to be declared with the right syntax: $. Also sass evaluation is eager, while less evaluation is _lazy_ that means in sass, mixins should be declared before they are use. I hope you can accept this change as it's currently not working. Thanks!
| * / Tooltip fix for NVDASam Potts2015-07-314-6/+2
| |/
| * gulpSam Potts2015-07-252-6/+6
| |
| * Tooltip tweakSam Potts2015-07-253-14/+8
| |