testing without lazy on overlib

This commit is contained in:
Travis Hegner
2015-06-29 14:05:20 -04:00
parent e397753f53
commit 63f7fc3056
3 changed files with 6 additions and 7 deletions

View File

@@ -1,12 +1,12 @@
$(document).ready(function(){
$("img.lazy").lazyload({
//effect: "fadeIn"
effect: "fadeIn"
}).removeClass("lazy");
$(document).ajaxStop(function() {
$("img.lazy").lazyload({
//effect: "fadeIn"
effect: "fadeIn"
}).removeClass("lazy");
});
@@ -16,7 +16,6 @@ function get_overlib(content) {
var ret = overlib(content, WRAP,HAUTO,VAUTO);
jQuery.event.trigger("ajaxStop");
console.log('test');
return ret;
}