diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2013-01-27 23:34:38 -0500 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2013-02-07 15:16:28 -0500 |
commit | 363299ac24aebbf2445207621840f44fcaaf670a (patch) | |
tree | 50f8e3041341118cb713e780a5cfa97853a6af89 /test/data/offset | |
parent | f3db084f7cc73379b0d6f5341c987e2a801ea032 (diff) | |
download | jquery-363299ac24aebbf2445207621840f44fcaaf670a.tar.gz jquery-363299ac24aebbf2445207621840f44fcaaf670a.zip |
Ref #13316: Sync all documents on full vs. minified source. Close gh-1147.
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 7c35ee3b7..7665d7aac 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.min.js"></script> + <script src="../../jquery.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 dd3193f91..6dc3d3754 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.min.js"></script> + <script src="../../jquery.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 1b35f5d35..7564f085e 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.min.js"></script> + <script src="../../jquery.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 91b6cbbc5..3ac054837 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.min.js"></script> + <script src="../../jquery.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 f8c638494..113400ce4 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.min.js"></script> + <script src="../../jquery.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 cf1a9a980..1e6ab7c4c 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.min.js"></script> + <script src="../../jquery.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 e8e431a8a..5510e2b9b 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.min.js"></script> + <script src="../../jquery.js"></script> <script type="text/javascript" charset="utf-8"> jQuery(function($) { $('table, th, td').click(function() { |