Replies: 0
On line 106 of kale.js, there is the following line of code:
if(jQuery(item).attr('src').match(/(https?:)?\/\/www\.youtube\.com/)) {
This code will break and cause your images not to load if there is an <iframe> without the src attribute. I fixed this by changing that line to this:
if(jQuery(item).attr('src') != "" && jQuery(item).attr('src').match(/(https?:)?\/\/www\.youtube\.com/)) {