pandora/static/js/embedInfo.js

17 lines
300 B
JavaScript
Raw Normal View History

2014-01-22 12:11:33 +00:00
'use strict';
pandora.ui.embedInfo = function() {
var ui = pandora.user.ui,
that = Ox.Element(),
$poster = Ox.Element('<img>')
.attr({
src: '/' + pandora.user.ui.item + '/poster.jpg'
})
.appendTo(that);
return that;
};