on this line : (Line 44)
Code: Select all
loaded = inview.trigger("unveil");Code: Select all
images.filter(function() {
var $e = $(this);
if ($e.is(":hidden")) return;
var wt = $w.scrollTop(),
wb = wt + $w.height(),
et = $e.offset().top,
eb = et + $e.height();
return eb >= wt - th && et <= wb + th;
});trigger("unveil") is executed .
but what exactly is the variable loaded holding ?????