You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The example app uses this._player = new Media('testPlayer', 'video'); which is now deprecated. It should use this._player = this._device.getMediaPlayer().
The text was updated successfully, but these errors were encountered:
Note that the existing video asset will fail to seek on HTML5 devices using the new media API, as it respects the seekable range reported by the underlying HTML5 video element, which for this asset is 0 - 0. @owensgit found this problem when he tried to upgrade TAL example with the new media API.
@tsadler1988 Do you happen to know how to add items to the grid widget? Sorry to randoly ask you. I'm having difficulty with the lack of examples in the documentation. Thank you in advance. Cheers,
The example app uses
this._player = new Media('testPlayer', 'video');
which is now deprecated. It should usethis._player = this._device.getMediaPlayer()
.The text was updated successfully, but these errors were encountered: