aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/offset/relative.html
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/offset/relative.html')
-rw-r--r--test/data/offset/relative.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/data/offset/relative.html b/test/data/offset/relative.html
index 3ac054837..e81186625 100644
--- a/test/data/offset/relative.html
+++ b/test/data/offset/relative.html
@@ -13,8 +13,8 @@
<script src="../../jquery.js"></script>
<script type="text/javascript" charset="utf-8">
jQuery(function($) {
- $('.relative').click(function() {
- $('#marker').css( $(this).offset() );
+ $(".relative").click(function() {
+ $("#marker").css( $(this).offset() );
var pos = $(this).position();
$(this).css({ position: 'absolute', top: pos.top, left: pos.left });
return false;