Skip to content

Commit

Permalink
Update jQuery references to version 3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbenner committed Feb 15, 2024
1 parent 42f9d66 commit 958c17e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Example paths configuration:
```javascript
require.config({
paths: {
jquery: 'https://code.jquery.com/jquery-3.6.4',
jquery: 'https://code.jquery.com/jquery-3.7.1',
'jquery.powertip': '../dist/jquery.powertip'
}
});
Expand Down
2 changes: 1 addition & 1 deletion examples/examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#events-examples input, #api-examples input { margin: 10px; padding: 10px 30px; }
</style>
<!-- Include jQuery and PowerTip -->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.6.4.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.7.1.js"></script>
<!-- begin-scripts -->
<script type="text/javascript" src="../src/core.js"></script>
<script type="text/javascript" src="../src/csscoordinates.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion test/amd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require.config({
paths: {
jquery: 'https://code.jquery.com/jquery-3.6.4',
jquery: 'https://code.jquery.com/jquery-3.7.1',
qunit: 'https://code.jquery.com/qunit/qunit-2.20.0',
'jquery.powertip': '../dist/jquery.powertip'
}
Expand Down
2 changes: 1 addition & 1 deletion test/edge-cases.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>PowerTip Edge Case Tests</title>

<!-- Library Resources -->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.6.4.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.7.1.js"></script>

<!-- PowerTip Core Resources -->
<script type="text/javascript" src="../src/core.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<!-- Dynamic jQuery Version Loader -->
<script type="text/javascript">
var jqVersions = [ '1.7.0', '1.12.4', '2.2.4', '3.6.4' ],
var jqVersions = [ '1.7.0', '1.12.4', '2.2.4', '3.7.1' ],
currentJq = QUnit.urlParams.jquery || jqVersions[jqVersions.length - 1];

QUnit.config.urlConfig.push({
Expand Down

0 comments on commit 958c17e

Please sign in to comment.