1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-24 08:42:25 +02:00
Commit Graph

3154 Commits

Author SHA1 Message Date
Brandon Casey
e8e4fe2745 feat(autoplay): extend autoplay option for greater good (#5209)
This PR extends the `autoplay` to the player with a few options that should hopefully make working with browsers that disable unmuted autoplay by default easier.
The current boolean option will match current behavior and any unknown option will be treated as it does now. The new options are the string values `muted`, `play`, and `any`.

- `muted` will mute the element and call `play()` on `loadstart`,
- `play` will call `play()` on `loadstart()`, this is similar to the `autoplay` attribute
- `any` will call `play()` on `loadstart()` but if it fails it will try muting the video and calling `play()` again.
2018-06-21 14:32:07 -04:00
Brandon Casey
edce736d18 feat(css): run autoprefixer on css (#5239) 2018-06-21 14:21:17 -04:00
Phil Richman
e92f177ce2 feat(text-track-display): Extend the constructColor function to handle 6 digit hex codes (#5238)
When providing the TextTrackDisplay component with track settings overrides, currently colour codes with only three digits are supported. This updates it so that 6 digit hex codes are also accepted.
2018-06-21 14:20:12 -04:00
Pat O'Neill
7fd29b4f18 fix: Allow evented objects, such as components and plugins, to listen to the window object in addition to DOM objects. (#5255)
the bug is that objects using the new-ish evented mixin cannot listen to the window object, preventing things like:

```
component.on(window, 'scroll', throttledListener);
```

This fixes that so anything that's a native EventTarget works.
2018-06-20 17:05:33 -04:00
Ivan Demchuk
5b8d373f7f chore(npmignore): don't publish zip file to npm (#5249)
Add zip file to npmignore.

Fixes #5248.
2018-06-20 17:04:28 -04:00
Gary Katsevman
0b2a8e04ef 7.0.5 2018-06-11 14:35:04 -04:00
Chuck Wilson
9504a93643 fix: make sure source options are passed through (#5241)
The changes to source caching in #5156 introduced a regression where the source options were no longer available to plugins. This PR makes sure the cached source object retains any source options passed along.
2018-06-11 13:47:36 -04:00
Darius Oleskevicius
002d7011c5 fix: menu sizing when using longer caption labels (#5228)
Currently, if longer captions labels are used the SubsCaps menu gets all messed up in IE11/Edge. This occurs due to the menu size is not adjusted correctly not taking into consideration the CC icon. This, as a result, causes the captions items not to fit in the menu and because they end up too wide and the menu has overflow: auto style, the horizontal scrollbars show up and cause the menu not to render correctly. Therefore, don't position the caption label absolutely.

Fix #4758.
2018-06-11 13:39:47 -04:00
Gary Katsevman
59ab3237c3
chore(package): update conventional-changelog-cli to version 2.0.1 🚀 (#5236)
Closes #5225
2018-06-07 15:39:22 -04:00
Gary Katsevman
1b0ff8a02f
chore(package): update rollup to version 0.60.1 🚀 (#5235)
Closes #5232
2018-06-07 11:25:45 -04:00
greenkeeper[bot]
781d9aee63 chore(package): update rollup-plugin-filesize to version 2.0.0 🚀 (#5234)
* chore(package): update rollup-plugin-filesize to version 2.0.0

* chore(package): update lockfile

https://npm.im/greenkeeper-lockfile
2018-06-07 10:57:23 -04:00
greenkeeper[bot]
e8d00e278c chore(package): update grunt-contrib-watch to version 1.1.0 🚀 (#5170) 2018-06-06 17:50:18 -04:00
Gary Katsevman
b3884973fc 7.0.4 2018-06-05 14:23:33 -04:00
Darius Oleskevicius
59869b9d49 fix(slider): suppress console warnings in Chrome for Android when scrubbing (#5219)
Instead of calling preventDefault() on touchstart in Chrome, set touch-action: none style on progress control to prevent unintended scrolling.

Fixes #4650.
2018-06-05 13:32:38 -04:00
Robel Tezera
a29156ca7b fix: silence play promise in a few more places (#5213)
Silence the play promise in the Big Play Button, click-to-play, and the poster image.
2018-06-04 15:25:51 -04:00
Joe Forbes
7c5a066f2a fix: build core script files as UMD (#5220) 2018-06-04 15:24:43 -04:00
Thijs Triemstra
a3fd06a1a8 docs(component): fix typo (#5226) 2018-06-04 15:24:13 -04:00
Brandon Casey
702acdb6a1
ignore: a terrible rollup watch fix for development (#5211) 2018-05-25 13:41:12 -04:00
Gary Katsevman
16b7acd4b9
chore(package): update rollup to version 0.59.3 (#5204)
Closes #5174
2018-05-24 15:19:36 -04:00
Brandon Casey
6a947416ee chore(build): fix rollup watch during npm start (#5203) 2018-05-24 12:35:27 -04:00
Owen Edwards
94e54fccf8 docs(collaborator-guide): Clarify how to Land a PR using the GitHub UI (#5201)
Clarify how to enter the header and body text when Landing a PR using the GitHub UI.
2018-05-23 16:15:26 -04:00
Owen Edwards
f3d7ac2524
fix(menus): change ARIA role of menu items for better screen reader support (#5171)
Change most menu items to an ARIA role of "menuitemradio" when only one item can be selected (i.e. in the Captions, Subtitles, Descriptions, Chapters, Audio Tracks, and Rate menus).

Fixes #5136
2018-05-23 12:47:37 -07:00
Owen Edwards
2bc810decb
fix(player): ensure that JAWS+IE announces the BPB and play button (#5173)
Freedom Scientific's recommended workaround for JAWS + IE not announcing the first button after a video element which doesn't have its own native controls (See https://github.com/FreedomScientific/VFO-standards-support/issues/78).

Fixes #4583
2018-05-23 12:43:44 -07:00
Owen Edwards
f5a6e61627
docs(examples): remove IE9 text track HTML markup in the doc/examples, and update to use video.js v7.0 (#5192)
docs(examples): Remove IE9 text track HTML markup in the doc/examples, and update to use video.js v7.0 (#5192)

Video.js v7 drops support for versions of IE prior to IE11, so examples should not reference earlier versions.
2018-05-23 12:32:27 -07:00
Gary Katsevman
6f8597fed6 7.0.3 2018-05-23 14:27:46 -04:00
Gary Katsevman
954f3d979f
fix(player): video-js embed missing video-js class (#5194)
When having a video-js embed with a class attribute, as part of the
changes to remove old IE support (#5041), we overwrote our addition of
the video-js class when it was missing. Instead, we want to make sure
that we don't override the class names again since they are already set
up correctly.

Fixes videojs/http-streaming#100
2018-05-22 21:44:35 -04:00
Gary Katsevman
fcd7d0db13 7.0.2 2018-05-17 20:34:40 -04:00
Gary Katsevman
eaf151663f
chore(package): Upgrade @videojs/http-streaming to 1.0.2 (#5189)
Upgrade to 1.0.2 which contains babel build fixes.

Fixes #5186
2018-05-17 20:00:30 -04:00
Gary Katsevman
2a85bdd3bf 7.0.1 2018-05-17 15:19:15 -04:00
Brandon Casey
22fd327076
tests: do not throw on tech/player dispose (#5179) 2018-05-16 12:02:41 -04:00
Brandon Casey
59c6261cb5
fix: check for el before resetSourceSet (#5176) 2018-05-16 11:19:45 -04:00
Gary Katsevman
09ddb98dfb fix(CHANGELOG): full 7.0.0 changelog 2018-05-11 17:26:30 -04:00
Gary Katsevman
ad47b30f01 7.0.0 2018-05-11 17:21:17 -04:00
Gary Katsevman
bca31670cb chore(CHANGELOG): update CHANGELOG from 6.x 2018-05-11 17:20:26 -04:00
Owen Edwards
0aa827fac5 fix(time-display): restore hidden label text for screen readers. (#5157)
Restore hidden label text for screen readers that describes what the button control does.

Renames the Duration Time language item to Duration.

Deprecate controlText_ property.

Fix a typo in translations-needed.md.

Add a space in the hidden label for live-display, so that it doesn't run together with the visible "LIVE" indication.

Fixes #5135
2018-05-11 14:34:33 -04:00
Owen Edwards
dc0d2bc187 fix: Remove spaces from element IDs and ARIA attributes in the Captions Settings Dialog (#5153)
Fixes #4688 and #4884; supercedes 855adf3.
2018-05-11 14:31:28 -04:00
Owen Edwards
8a08957835 fix: Remove unnecessary ARIA role on the Control Bar. (#5154)
There doesn't seem to be any point in indicating the Control Bar as a separate object - it's all just part of the video player. Perhaps in the future, if there's content which isn't part of the control bar that needs to be clearly distinguishable from the control bar, then it would make sense, but right now you don't interact with the control bar and it doesn't convey any concept of grouping.

Fixes #5134
2018-05-11 14:31:28 -04:00
Owen Edwards
1c74e4fa0b fix: Reduce the multiple-announcement by screen readers of the new name of a button when its text label changes. (#5158)
Move the aria-live attribute to the control text element within buttons, rather than on the whole button, so it is not affected by the change of the title attribute, only by the change of the control text.

It seems like having aria-live on the button itself means that JAWS and NVDA announce the button both when the button text changes and when the title attribute changes. NVDA speaks the new label more times because it announces the button text as the label and the title as the description, so it says, for example, "pause button pause". JAWS doesn't appear to do this, so it doesn't repeat it as many times.

Partially addresses #5023
2018-05-11 14:31:28 -04:00
greenkeeper[bot]
de9c4da6c0 chore(package): update rollup-plugin-json to version 3.0.0 🚀 (#5169) 2018-05-11 14:27:32 -04:00
greenkeeper[bot]
54073815e5 chore(package): update unified to version 7.0.0 🚀 (#5166) 2018-05-11 14:12:48 -04:00
Monica Olinescu
ad1bb9db5e fix(seek-bar): ensure aria-valuenow attribute in seek-bar is not NaN (#5164)
Updated the getPercent function to return 0 instead of NaN. This is in accordance with the return value in the function's jsdocs.

Fixes #4960.
2018-05-11 14:09:15 -04:00
axten
d44682849e feat: add 'autoSetup' option (#5123)
this must be set globally with videojs.options.autoSetup = false in the same tick as videojs source is loaded to take effect

fixes #5094
2018-05-11 13:53:46 -04:00
Brandon Casey
c6617b24f7
feat: copy properties from <video-js> to the media el (#5039) 2018-05-09 15:55:29 -04:00
Brandon Casey
6147e5f7aa
fix: sourceset and browser behavior inconsistencies (#5054)
* We now trigger `sourceset` any time a `<source>` element is appended to a mediaEl with no source.
  * `load` should always fire a `sourceset`
  * `sourceset` should always be the absolute url.
2018-05-09 15:51:47 -04:00
Brandon Casey
ba2ae7868b
feat: update the players source cache on sourceset (#5040) 2018-05-08 17:46:46 -04:00
greenkeeper[bot]
83c30556aa chore(package): update load-grunt-tasks to version 4.0.0 🚀 (#5151) 2018-05-07 14:15:07 -04:00
Luan Roger Santos Santana
a00aa0d0d3 fix(lang): add missing strings in pt-BR (#5122)
Closes #5121.
2018-04-30 16:09:03 -04:00
greenkeeper[bot]
a6165d978e chore(package): update klaw-sync to version 4.0.0 🚀 (#5130) 2018-04-30 10:53:59 -04:00
Gary Katsevman
ea9a53cc60 7.0.0-rc.1 2018-04-20 16:40:33 -04:00
Gary Katsevman
4a34dd78b1
feat(modal): remove old IE box sizing (#5113) 2018-04-20 16:33:31 -04:00