Created
September 2, 2011 14:32
-
-
Save hzr/1188747 to your computer and use it in GitHub Desktop.
Disable stupid lazy loading of images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.opera.addEventListener("AfterScript", function(e) { | |
| if (typeof jQuery != "undefined" && jQuery.prototype.lazyload) { | |
| jQuery.prototype.lazyload = function() {}; | |
| } | |
| }, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment