Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: videojs/video.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.15.0
Choose a base ref
...
head repository: videojs/video.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.15.1
Choose a head ref
  • 5 commits
  • 66 files changed
  • 3 contributors

Commits on Dec 23, 2016

  1. Copy the full SHA
    b7c384e View commit details
  2. fix: Support require()-ing video.js (#3889)

    Introduce the Dom.isReal() function, which makes an educated assumption about the "realness" of the document object.
    Wrap code here and there with checks against Dom.isReal() as well as other defensive code.
    
    Fixes #3869.
    misteroneill authored and gkatsev committed Dec 23, 2016
    Copy the full SHA
    ac0b03f View commit details
  3. Copy the full SHA
    26d4e7b View commit details
  4. v5.15.1

    gkatsev committed Dec 23, 2016
    Copy the full SHA
    b914c76 View commit details
  5. v5.15.1 dist

    gkatsev committed Dec 23, 2016
    Copy the full SHA
    845962e View commit details
Showing with 59,902 additions and 34 deletions.
  1. +8 −0 CHANGELOG.md
  2. +1 −1 component.json
  3. +1,295 −0 dist/alt/video-js-cdn.css
  4. +1 −0 dist/alt/video-js-cdn.min.css
  5. +24,713 −0 dist/alt/video.novtt.js
  6. +15 −0 dist/alt/video.novtt.min.js
  7. +330 −0 dist/examples/elephantsdream/captions.ar.vtt
  8. +334 −0 dist/examples/elephantsdream/captions.en.vtt
  9. +326 −0 dist/examples/elephantsdream/captions.ja.vtt
  10. +356 −0 dist/examples/elephantsdream/captions.ru.vtt
  11. +349 −0 dist/examples/elephantsdream/captions.sv.vtt
  12. +44 −0 dist/examples/elephantsdream/chapters.en.vtt
  13. +280 −0 dist/examples/elephantsdream/descriptions.en.vtt
  14. +46 −0 dist/examples/elephantsdream/index.html
  15. +41 −0 dist/examples/shared/example-captions.vtt
  16. +27 −0 dist/examples/simple-embed/index.html
  17. BIN dist/font/VideoJS.eot
  18. +102 −0 dist/font/VideoJS.svg
  19. BIN dist/font/VideoJS.ttf
  20. BIN dist/font/VideoJS.woff
  21. +2,600 −0 dist/ie8/videojs-ie8.js
  22. +1 −0 dist/ie8/videojs-ie8.min.js
  23. +34 −0 dist/lang/ar.js
  24. +26 −0 dist/lang/ba.js
  25. +26 −0 dist/lang/bg.js
  26. +26 −0 dist/lang/ca.js
  27. +26 −0 dist/lang/cs.js
  28. +26 −0 dist/lang/da.js
  29. +40 −0 dist/lang/de.js
  30. +40 −0 dist/lang/el.js
  31. +40 −0 dist/lang/en.js
  32. +26 −0 dist/lang/es.js
  33. +26 −0 dist/lang/fa.js
  34. +26 −0 dist/lang/fi.js
  35. +40 −0 dist/lang/fr.js
  36. +26 −0 dist/lang/hr.js
  37. +26 −0 dist/lang/hu.js
  38. +26 −0 dist/lang/it.js
  39. +26 −0 dist/lang/ja.js
  40. +26 −0 dist/lang/ko.js
  41. +26 −0 dist/lang/nb.js
  42. +37 −0 dist/lang/nl.js
  43. +26 −0 dist/lang/nn.js
  44. +34 −0 dist/lang/pl.js
  45. +26 −0 dist/lang/pt-BR.js
  46. +40 −0 dist/lang/ru.js
  47. +26 −0 dist/lang/sr.js
  48. +26 −0 dist/lang/sv.js
  49. +34 −0 dist/lang/tr.js
  50. +40 −0 dist/lang/uk.js
  51. +26 −0 dist/lang/vi.js
  52. +27 −0 dist/lang/zh-CN.js
  53. +40 −0 dist/lang/zh-TW.js
  54. BIN dist/video-js-5.15.1.zip
  55. +1,307 −0 dist/video-js.css
  56. +1 −0 dist/video-js.min.css
  57. BIN dist/video-js.swf
  58. +26,667 −0 dist/video.js
  59. +19 −0 dist/video.min.js
  60. +1 −1 package.json
  61. +9 −2 src/js/setup.js
  62. +21 −21 src/js/tech/html5.js
  63. +9 −3 src/js/utils/browser.js
  64. +16 −0 src/js/utils/dom.js
  65. +4 −6 src/js/video.js
  66. +39 −0 test/unit/video.test.js
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
<a name="5.15.1"></a>
## [5.15.1](https://github.com/videojs/video.js/compare/v5.15.0...v5.15.1) (2016-12-23)

### Bug Fixes

* extra warn logs on already initialized player references ([#3888](https://github.com/videojs/video.js/issues/3888)) ([b7c384e](https://github.com/videojs/video.js/commit/b7c384e))
* Support require()-ing video.js ([#3889](https://github.com/videojs/video.js/issues/3889)) ([ac0b03f](https://github.com/videojs/video.js/commit/ac0b03f)), closes [#3869](https://github.com/videojs/video.js/issues/3869)

<a name="5.15.0"></a>
# [5.15.0](https://github.com/videojs/video.js/compare/v5.14.1...v5.15.0) (2016-12-22)

2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "video.js",
"description": "An HTML5 and Flash video player with a common API and skin for both.",
"version": "5.15.0",
"version": "5.15.1",
"keywords": [
"videojs",
"html5",
Loading