Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 5468132

Browse files
committed
fix(dependencies): fixed jquery min version for touches
1 parent 7588b5e commit 5468132

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Both gridster.js and gridstack.js inspired this jQuery plugin, however both have
2020
1. Include jQuery:
2121

2222
```html
23-
<script src="//code.jquery.com/jquery-1.12.4.js"></script>
23+
<script src="//code.jquery.com/jquery-3.2.1.js"></script>
2424
```
2525

2626
2. Include plugin's code:

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ <h1 id="header-1"><a href="#header-1"></a>Demo</h1>
318318
</div>
319319
<br/>
320320
</footer>
321-
<script src="//code.jquery.com/jquery-1.9.1.js" ></script>
321+
<script src="//code.jquery.com/jquery-3.2.1.js" ></script>
322322

323323
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
324324
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/themes/prism.css" />

docs/indexLocal.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ <h1 id="header-1"><a href="#header-1"></a>Demo</h1>
318318
</div>
319319
<br/>
320320
</footer>
321-
<script src="http://code.jquery.com/jquery-1.9.1.js" ></script>
321+
<script src="http://code.jquery.com/jquery-3.2.1.js" ></script>
322322

323323
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
324324
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/themes/prism.css" />

docs/responsive.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<body>
2525
<div id="responsive-grid" ></div>
2626

27-
<script src="//code.jquery.com/jquery-1.9.1.js" ></script>
27+
<script src="//code.jquery.com/jquery-3.2.1.js" ></script>
2828

2929
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
3030

docs/responsiveLocal.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<body>
2525
<div id="responsive-grid" ></div>
2626

27-
<script src="http://code.jquery.com/jquery-1.9.1.js" ></script>
27+
<script src="http://code.jquery.com/jquery-3.2.1.js" ></script>
2828

2929
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
3030

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
],
4040
"license": "MIT",
4141
"dependencies": {
42-
"jquery": ">=1.9.1 < 4.0.0"
42+
"jquery": ">=3.2.1 < 4.0.0"
4343
},
4444
"devDependencies": {
4545
"babel-core": "^6.24.1",
@@ -63,8 +63,7 @@
6363
"karma-qunit": "^1.2.1",
6464
"phantomjs": "^1.9.18",
6565
"qunitjs": "^1.19.0",
66-
"semantic-release": "^6.3.6",
67-
"jquery": ">=1.9.1 < 4.0.0"
66+
"semantic-release": "^6.3.6"
6867
},
6968
"scripts": {
7069
"commit": "git-cz",

0 commit comments

Comments
 (0)