Skip to content

Commit

Permalink
It seems jQuery 1.3.1 breaks the plugin. Use 1.2.6 in demos.
Browse files Browse the repository at this point in the history
  • Loading branch information
tuupola committed Feb 7, 2009
1 parent 3ee1043 commit 7232969
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions enabled.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="jquery.lazyload.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
$(function() {
$("img").lazyload({placeholder : "img/grey.gif"});
});
</script>
</script>
<script src="/mint/?js" type="text/javascript"></script>
<style type="text/css">
#sidebar {
width: 0px;
Expand All @@ -27,7 +28,7 @@

</head>

<body>
<body>
<div id="wrap">
<div id="header">
<p>
Expand Down Expand Up @@ -75,7 +76,6 @@ <h2>Plugin enabled</h2>
<div id="footer">
</div>

<script src="/mint/?js" type="text/javascript"></script>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-190966-1";
Expand Down
4 changes: 2 additions & 2 deletions enabled_fadein.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
effect : "fadeIn"
});
});
</script>
</script>
<script src="/mint/?js" type="text/javascript"></script>
<style type="text/css">
#sidebar {
width: 0px;
Expand Down Expand Up @@ -80,7 +81,6 @@ <h2>Plugin enabled with fadein effect</h2>
<div id="footer">
</div>

<script src="/mint/?js" type="text/javascript"></script>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-190966-1";
Expand Down
6 changes: 3 additions & 3 deletions enabled_gazillion.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="jquery.lazyload.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
$(function() {
$("img").lazyload({
placeholder : "img/grey.gif"
});
});
</script>
</script>
<script src="/mint/?js" type="text/javascript"></script>
<style type="text/css">
#sidebar {
width: 0px;
Expand Down Expand Up @@ -80,7 +81,6 @@ <h2>Plugin enabled with gazillion images</h2>
<div id="footer">
</div>

<script src="/mint/?js" type="text/javascript"></script>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-190966-1";
Expand Down
4 changes: 2 additions & 2 deletions enabled_timeout.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
$(window).bind('load', function() {
var timeout = setTimeout(function() { $("img").trigger("sporty") }, 5000);
});
</script>
</script>
<script src="/mint/?js" type="text/javascript"></script>
<style type="text/css">
#sidebar {
width: 0px;
Expand Down Expand Up @@ -88,7 +89,6 @@ <h2>Plugin enabled</h2>
<div id="footer">
</div>

<script src="/mint/?js" type="text/javascript"></script>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-190966-1";
Expand Down
4 changes: 2 additions & 2 deletions enabled_wide.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
$(function() {
$("img").lazyload({placeholder : "img/grey.gif"});
});
</script>
</script>
<script src="/mint/?js" type="text/javascript"></script>
<style type="text/css">
#sidebar {
width: 0px;
Expand Down Expand Up @@ -76,7 +77,6 @@ <h2>Plugin enabled on Wide Page</h2>
<div id="footer">
</div>

<script src="/mint/?js" type="text/javascript"></script>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-190966-1";
Expand Down

0 comments on commit 7232969

Please sign in to comment.