summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--example/index.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/example/index.html b/example/index.html
index 448fbd3..fa009dc 100644
--- a/example/index.html
+++ b/example/index.html
@@ -2,7 +2,7 @@
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
- <script src="../jquery.once.js"></script>
+ <script src="../jquery.once.min.js"></script>
</head>
<body>
<h1>jQuery Once</h1>
@@ -11,7 +11,6 @@
$('p').once('greenify', function() {
$(this).css('color', 'green');
});
- $('p').once('bluify').css('color', 'blue');
</script>
</body>
</html>