1
0
mirror of https://github.com/videojs/video.js.git synced 2025-02-06 11:51:07 +02:00

@misteroneill removed the deprecated Component init method. closes #2427

This commit is contained in:
Pat O'Neill 2015-08-06 15:09:13 -07:00 committed by heff
parent 1f8e0cc48a
commit f80de2b1ac
2 changed files with 1 additions and 6 deletions

View File

@ -87,6 +87,7 @@ CHANGELOG
* @nickygerritsen use the default seekable when a source handler is unset ([view](https://github.com/videojs/video.js/pull/2401))
* @gkatsev always use emulated TextTrackLists so tracks survive tech switches ([view](https://github.com/videojs/video.js/pull/2425))
* @misteroneill restore Html5.Events ([view](https://github.com/videojs/video.js/pull/2421))
* @misteroneill removed the deprecated Component init method ([view](https://github.com/videojs/video.js/pull/2427))
--------------------

View File

@ -98,12 +98,6 @@ class Component {
}
}
// Temp for ES6 class transition, remove before 5.0
init() {
// console.log('init called on Component');
Component.apply(this, arguments);
}
/**
* Dispose of the component and all child components
*