Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
add semi-colons to example
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpet committed Jun 30, 2011
1 parent 496623a commit 9032dcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/index.html
Expand Up @@ -19,12 +19,12 @@
/* check cookies and autodetect, returning the onLoad callback */
var bind_handlers = style.install();
/* bind the handlers on document load with jQuery */
$(bind_handlers)
$(bind_handlers);
</script>
<!-- let's do colors as well, this time with method chaining -->
<link rel="stylesheet" type="text/css" href="white.css" id="colors"/>
<script type="text/javascript">
$(bender("colors").add("white", "white.css").add("black", "black.css").install())
$(bender("colors").add("white", "white.css").add("black", "black.css").install());
</script>
</head>
<body>
Expand Down

0 comments on commit 9032dcd

Please sign in to comment.