17 lines
300 B
JavaScript
17 lines
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;
|
||
|
|
||
|
};
|