-
Notifications
You must be signed in to change notification settings - Fork 346
Closed
Description
Not sure what it happening, but in Chrome (35.0.1916.114) on a Mac OSX (10.9.2), visiting my site that I've already visited, and possibly cached, none of the b-lazy elements change, nor do the success or error events fire.
If I press refresh, everything runs normally. If I go up to the location bar and press enter it will load fine too. Just sometimes when opening a new tab and typing in the url and hitting enter.
Wondering if anyone else is experiencing this, and/or it is a b-lazy issue, or something else.
FYI, here is my call to b-lazy:
var bLazy = new Blazy({
selector: '.b-lazy',
offset: 180, // Loads images 180px before they're visible
success: function(ele){
// Image has loaded
// Do your business here
console.log('img loaded');
},
error: function(ele, msg){
console.log('b-lazy error:' + msg);
console.log(ele);
if(msg === 'missing'){
// Data-src is missing
}
else if(msg === 'invalid'){
// Data-src is invalid
}
}
});Here is where I'm experiencing the issue: http://staging.aspirebeverages.com (even clicking on this link for me is a case when it sometimes does not fire)
Any ideas? Thanks in advance!
Metadata
Metadata
Assignees
Labels
No labels