pandora/static/js/embedInfo.js
2014-01-22 17:41:33 +05:30

17 lines
No EOL
300 B
JavaScript

'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;
};