1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-04 06:48:49 +02:00

Merge branch 'stable'

This commit is contained in:
Gary Katsevman 2016-09-28 16:28:21 -04:00
commit 7cf2de30ac
4 changed files with 9 additions and 2 deletions

View File

@ -32,6 +32,11 @@ _(none)_
* @gkatsev added tests for webpack and browserify bundling and node.js requiring ([view](https://github.com/videojs/video.js/pull/3558))
* @rlchung fixed tests that weren't disposing players when they finished ([view](https://github.com/videojs/video.js/pull/3524))
## 5.11.7 (2016-09-28)
* @gkatsev checked throwIfWhitespace first in hasElClass ([view](https://github.com/videojs/video.js/pull/3640))
* @misteroneill pinned grunt-contrib-uglify to ~0.11 to pin uglify to ~2.6 ([view](https://github.com/videojs/video.js/pull/3634))
* @gkatsev set playerId on new el created for movingMediaElementInDOM. Fixes #3283 ([view](https://github.com/videojs/video.js/pull/3648))
## 5.11.6 (2016-08-25)
* @imbcmdth Added exception handling to event dispatcher ([view](https://github.com/videojs/video.js/pull/3580))

View File

@ -70,7 +70,7 @@
"grunt-contrib-connect": "~0.7.1",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-cssmin": "~0.6.0",
"grunt-contrib-uglify": "^0.8.0",
"grunt-contrib-uglify": "~0.11.0",
"grunt-contrib-watch": "~0.1.4",
"grunt-coveralls": "^1.0.0",
"grunt-fastly": "^0.1.3",

View File

@ -190,6 +190,8 @@ class Html5 extends Tech {
})
);
}
el.playerId = this.options_.playerId;
}
// Update specific tag settings, in case they were overridden

View File

@ -253,10 +253,10 @@ export function removeElData(el) {
* @param {String} classToCheck Classname to check
*/
export function hasElClass(element, classToCheck) {
throwIfWhitespace(classToCheck);
if (element.classList) {
return element.classList.contains(classToCheck);
}
throwIfWhitespace(classToCheck);
return classRegExp(classToCheck).test(element.className);
}