summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Loach <robloach@gmail.com>2014-01-29 11:45:57 -0500
committerRob Loach <robloach@gmail.com>2014-01-29 11:45:57 -0500
commit9279130917769cbade87c8d0e022bbea3f028194 (patch)
treec01096bd0623213c2ce581c6dfd4542f03f55ee9
parent70664bbe119c8f3e1ff3ce56ae1412df8763a8ce (diff)
downloadjquery-once-9279130917769cbade87c8d0e022bbea3f028194.zip
jquery-once-9279130917769cbade87c8d0e022bbea3f028194.tar.gz
jquery-once-9279130917769cbade87c8d0e022bbea3f028194.tar.bz2
Remove not needed change
-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>