This commit is contained in:
Rick Waldron 2011-07-22 11:16:38 -04:00
Родитель fa70437e4f
Коммит 4dd5eabbd0
1 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -108,14 +108,14 @@
Popcorn.forEach( data.items, function ( item, i ) {
if ( i < _count ) {
_link = document.createElement( 'a' );
_link.setAttribute( 'href', item.link );
_link = document.createElement( "a" );
_link.setAttribute( "href", item.link );
_link.setAttribute( "target", "_blank" );
_image = document.createElement( 'img' );
_image.setAttribute( 'src', item.media.m );
_image.setAttribute( 'height',_height );
_image.setAttribute( 'width', _width );
_image.setAttribute( 'style', 'border:' + _border + ';padding:' + _padding );
_image = document.createElement( "img" );
_image.setAttribute( "src", item.media.m );
_image.setAttribute( "height",_height );
_image.setAttribute( "width", _width );
_image.setAttribute( "style", "border:" + _border + ";padding:" + _padding );
_link.appendChild( _image );
fragment.appendChild( _link );