vknplayer
Version:
console audio player for listen music from vk.com and on-line radio
26 lines (19 loc) • 372 B
JavaScript
var PlayList = require('./playlist');
/**
* @extends {PlayList}
* @constructor
*/
var SinglePL = function() {
goog.base(this, {
left: '50%',
top: 2,
bottom: 4,
right: 0,
hidden: false
});
this._setOffset(0);
};
goog.inherits(SinglePL, PlayList);
/** @inheritDoc */
SinglePL.prototype._recoveryDefaultState = function() {};
module.exports = SinglePL;