diff options
Diffstat (limited to 'test/data/offset')
-rw-r--r-- | test/data/offset/absolute.html | 2 | ||||
-rw-r--r-- | test/data/offset/body.html | 2 | ||||
-rw-r--r-- | test/data/offset/fixed.html | 2 | ||||
-rw-r--r-- | test/data/offset/relative.html | 2 | ||||
-rw-r--r-- | test/data/offset/scroll.html | 2 | ||||
-rw-r--r-- | test/data/offset/static.html | 2 | ||||
-rw-r--r-- | test/data/offset/table.html | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/test/data/offset/absolute.html b/test/data/offset/absolute.html index 78db1a378..7c35ee3b7 100644 --- a/test/data/offset/absolute.html +++ b/test/data/offset/absolute.html @@ -15,7 +15,7 @@ p.instructions { position: absolute; bottom: 0; } #positionTest { position: absolute; } </style> - <script src="../../../dist/jquery.js"></script> + <script src="../../../dist/jquery.min.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('.absolute').click(function() { diff --git a/test/data/offset/body.html b/test/data/offset/body.html index c5d7e66d7..dd3193f91 100644 --- a/test/data/offset/body.html +++ b/test/data/offset/body.html @@ -9,7 +9,7 @@ #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } #firstElement { width: 50px; height: 50px; background: green; } </style> - <script src="../../../dist/jquery.js"></script> + <script src="../../../dist/jquery.min.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('body').click(function() { diff --git a/test/data/offset/fixed.html b/test/data/offset/fixed.html index 6fa2af992..1b35f5d35 100644 --- a/test/data/offset/fixed.html +++ b/test/data/offset/fixed.html @@ -12,7 +12,7 @@ #forceScroll { width: 5000px; height: 5000px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../../../dist/jquery.js"></script> + <script src="../../../dist/jquery.min.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { window.scrollTo(1000,1000); diff --git a/test/data/offset/relative.html b/test/data/offset/relative.html index 33b6abb6d..91b6cbbc5 100644 --- a/test/data/offset/relative.html +++ b/test/data/offset/relative.html @@ -10,7 +10,7 @@ #relative-2 { top: 20px; left: 20px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../../../dist/jquery.js"></script> + <script src="../../../dist/jquery.min.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('.relative').click(function() { diff --git a/test/data/offset/scroll.html b/test/data/offset/scroll.html index 716891c86..f8c638494 100644 --- a/test/data/offset/scroll.html +++ b/test/data/offset/scroll.html @@ -13,7 +13,7 @@ #forceScroll { width: 5000px; height: 5000px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../../../dist/jquery.js"></script> + <script src="../../../dist/jquery.min.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { window.scrollTo(1000,1000); diff --git a/test/data/offset/static.html b/test/data/offset/static.html index 674a7d03a..cf1a9a980 100644 --- a/test/data/offset/static.html +++ b/test/data/offset/static.html @@ -10,7 +10,7 @@ #static-2 { top: 20px; left: 20px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../../../dist/jquery.js"></script> + <script src="../../../dist/jquery.min.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('.static').click(function() { diff --git a/test/data/offset/table.html b/test/data/offset/table.html index 004f4acb0..e8e431a8a 100644 --- a/test/data/offset/table.html +++ b/test/data/offset/table.html @@ -10,7 +10,7 @@ th, td { border: 1px solid #000; width: 100px; height: 100px; } #marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; } </style> - <script src="../../../dist/jquery.js"></script> + <script src="../../../dist/jquery.min.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('table, th, td').click(function() { |