pavelk2 / social-feed

JavaScript plugin that shows a user feed from the most popular social networks
http://pavelk2.github.io/social-feed-example/
MIT License
963 stars 304 forks source link

Delete of an unqualified identifier in strict mode #309

Open seibtph opened 6 years ago

seibtph commented 6 years ago

I get this error: Delete of an unqualified identifier in strict mode

But If i uncomment the following code line (delete img), the social feed list is not broken anymore.

jquery.socialfeed.js

$(img).load(function() {
if (img.width < options.media_min_width) {
      image.hide();
}
// garbage collect img
// delete img;

})