UNPKG

cloudinary-video-player

Version:

Cloudinary Video Player

19 lines (13 loc) 336 B
import PlaylistLayout from './playlist-layout'; class PlaylistLayoutVertical extends PlaylistLayout { constructor (player, options) { options.wrap = true; super(player, options); } getCls() { let cls = super.getCls(); cls.push('cld-plw-vertical'); return cls; } } export default PlaylistLayoutVertical;