It's in base.imagesLoaded function
ic = ('fileSize' in t[i] && t[i].fileSize < 0 && t[i].count > 10) ? true : t[i].complete;
must be like
ic = (('fileSize' in t[i] && t[i].fileSize < 0) || t[i].count > 10) ? true : t[i].complete;
because in your case ic would never be true, even after 10 iterations it would be t[i].complete, which is false, because img is not loaded
It's in base.imagesLoaded function
must be like
because in your case ic would never be true, even after 10 iterations it would be t[i].complete, which is false, because img is not loaded