From fa70437e4f6a9a83574bebd272542572a175461e Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Thu, 21 Jul 2011 10:52:02 -0400 Subject: [PATCH] [#581] Set title to fragment.innerHTML, per review --- plugins/flickr/popcorn.flickr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/flickr/popcorn.flickr.js b/plugins/flickr/popcorn.flickr.js index a9e740f3..fdb314ab 100755 --- a/plugins/flickr/popcorn.flickr.js +++ b/plugins/flickr/popcorn.flickr.js @@ -103,7 +103,7 @@ var fragment = document.createElement( "p" ); - containerDiv.innerHTML = "

" + data.title + "

"; + fragment.innerHTML = "

" + data.title + "

"; Popcorn.forEach( data.items, function ( item, i ) { if ( i < _count ) {