diff options
Diffstat (limited to 'test/data/offset/scroll.html')
-rw-r--r-- | test/data/offset/scroll.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/data/offset/scroll.html b/test/data/offset/scroll.html index ad35ab84a..c8c08020f 100644 --- a/test/data/offset/scroll.html +++ b/test/data/offset/scroll.html @@ -18,10 +18,10 @@ <script type="text/javascript" charset="utf-8"> jQuery(function($) { window.scrollTo(1000,1000); - $('#scroll-1')[0].scrollLeft = 5; - $('#scroll-1')[0].scrollTop = 5; - $('.scroll').click(function() { - $('#marker').css( $(this).offset() ); + $("#scroll-1")[0].scrollLeft = 5; + $("#scroll-1")[0].scrollTop = 5; + $(".scroll").click(function() { + $("#marker").css( $(this).offset() ); return false; }); }); |