Skip to content

Commit

Permalink
Remove accidentally committed debug code.
Browse files Browse the repository at this point in the history
  • Loading branch information
tuupola committed Feb 26, 2012
1 parent dcf62b7 commit b775e0f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
6 changes: 2 additions & 4 deletions enabled.html
Expand Up @@ -53,12 +53,12 @@ <h2>Plugin enabled</h2>
$("img").lazyload();</pre>
</code>

<img id="firstx" src="img/grey.gif" data-original="img/bmw_m1_hood.jpg" width="765" height="574" alt="BMW M1 Hood"><br/>
<img src="img/grey.gif" data-original="img/bmw_m1_hood.jpg" width="765" height="574" alt="BMW M1 Hood"><br/>
<img src="img/grey.gif" data-original="img/bmw_m1_side.jpg" width="765" height="574" alt="BMW M1 Side"><br/>
<img src="img/grey.gif" data-original="img/viper_1.jpg" width="765" height="574" alt="Viper 1"><br/>
<img src="img/grey.gif" data-original="img/viper_corner.jpg" width="765" height="574" alt="Viper Corner"><br/>
<img src="img/grey.gif" data-original="img/bmw_m3_gt.jpg" width="765" height="574" alt="BMW M3 GT"><br/>
<img id="lastx" src="img/grey.gif" data-original="img/corvette_pitstop.jpg" width="765" height="574" alt="Corvette Pitstop"><br/>
<img src="img/grey.gif" data-original="img/corvette_pitstop.jpg" width="765" height="574" alt="Corvette Pitstop"><br/>

</div>
<div id="sidebar">
Expand All @@ -71,8 +71,6 @@ <h2>Plugin enabled</h2>
<script src="jquery.lazyload.js?v=3" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
console.log("first:", $.belowthefold("#firstx", {threshold : 100}));
console.log("last:", $.belowthefold("#lastx", {threshold : 100}));
$("img").lazyload();
});
</script>
Expand Down
3 changes: 2 additions & 1 deletion enabled_fadein.html
Expand Up @@ -74,7 +74,7 @@ <h2>Plugin enabled with fadein effect</h2>
$(function() {
$("img").lazyload({
effect : "fadeIn",
effect_speed : "foo",
/*
appear : function(elements_left, settings) {
console.log("appear");
console.log(elements_left);
Expand All @@ -85,6 +85,7 @@ <h2>Plugin enabled with fadein effect</h2>
console.log(elements_left);
//console.log(this, elements_left, settings);
}
*/
});
});
</script>
Expand Down
6 changes: 1 addition & 5 deletions enabled_gazillion.html
Expand Up @@ -82,12 +82,8 @@ <h2>Plugin enabled with gazillion images</h2>
" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
console.log("foo");
$("img").lazyload({
event: "scrollstop",
callback : function(elements_left, settings) {
console.log(this, elements_left, settings);
}
event: "scrollstop"
});
});
</script>
Expand Down

0 comments on commit b775e0f

Please sign in to comment.