Skip to content

Commit 441a734

Browse files
committed
Fix minimum jQuery dependency requirements
1 parent e13ad6d commit 441a734

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"microformat"
1818
],
1919
"require": {
20-
"components/jquery": ">=1.2.3 <3.4"
20+
"components/jquery": ">=1.5.0 <3.4"
2121
},
2222
"extra": {
2323
"component": {

jquery.timeago.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* @name timeago
66
* @version 1.6.6
7-
* @requires jQuery >=1.2.3 <3.4
7+
* @requires jQuery >=1.5.0 <3.4
88
* @author Ryan McGeary
99
* @license MIT License - http://www.opensource.org/licenses/mit-license.php
1010
*

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"dependencies": {
17-
"jquery": ">=1.2.3 <3.4"
17+
"jquery": ">=1.5.0 <3.4"
1818
},
1919
"description": "jQuery plugin that makes it easy to support automatically updating fuzzy timestamps (e.g. \"4 minutes ago\" or \"about 1 day ago\").",
2020
"keywords": [

test/index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,10 @@ <h2>Disposal</h2>
234234
<p><abbr class="disposal notDisposed"></abbr></p>
235235
</div>
236236

237-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
237+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
238+
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> -->
239+
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> -->
240+
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> -->
238241
<script src="http://code.jquery.com/qunit/qunit-1.11.0.js"></script>
239242
<script src="../jquery.timeago.js"></script>
240243
<script src="test_helpers.js" type="text/javascript"></script>

timeago.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"dependencies": {
17-
"jquery": ">=1.2.3 <3.4"
17+
"jquery": ">=1.5.0 <3.4"
1818
},
1919
"description": "jQuery plugin that makes it easy to support automatically updating fuzzy timestamps (e.g. \"4 minutes ago\" or \"about 1 day ago\").",
2020
"keywords": [

0 commit comments

Comments
 (0)