Skip to content

Commit

Permalink
jQuery version ugrade.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoluteur committed Dec 13, 2024
1 parent 269075f commit 01922c9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ First, load [jQuery](http://jquery.com/) (v3.1 or greater), [jQuery UI](http://j

```html
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"
type="text/javascript"
charset="utf-8"
></script>
<script
src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"
src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.14.1/jquery-ui.min.js"
type="text/javascript"
charset="utf-8"
></script>
Expand All @@ -79,7 +79,7 @@ The widget requires a jQuery UI theme to be present, as well as its own included
<link
rel="stylesheet"
type="text/css"
href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/ui-lightness/jquery-ui.css"
href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.14.1/themes/ui-lightness/jquery-ui.css"
/>
<link href="css/evol-colorpicker.css" rel="stylesheet" type="text/css" />
```
Expand Down
6 changes: 3 additions & 3 deletions documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,12 @@ <h2 id="usage">Usage</h2>
Colorpicker).
</p>
<pre><code class="language-html">&lt;script
src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;
src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js&quot;
type=&quot;text/javascript&quot;
charset=&quot;utf-8&quot;
&gt;&lt;/script&gt;
&lt;script
src=&quot;https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js&quot;
src=&quot;https://ajax.googleapis.com/ajax/libs/jqueryui/1.14.1/jquery-ui.min.js&quot;
type=&quot;text/javascript&quot;
charset=&quot;utf-8&quot;
&gt;&lt;/script&gt;
Expand All @@ -151,7 +151,7 @@ <h2 id="usage">Usage</h2>
<pre><code class="language-html">&lt;link
rel=&quot;stylesheet&quot;
type=&quot;text/css&quot;
href=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/ui-lightness/jquery-ui.css&quot;
href=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.14.1/themes/ui-lightness/jquery-ui.css&quot;
/&gt;
&lt;link href=&quot;css/evol-colorpicker.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;
</code></pre>
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@
<link
id="jquiCSS"
rel="stylesheet"
href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/base/jquery-ui.css"
href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.14.1/themes/base/jquery-ui.css"
type="text/css"
media="all"
/>
<link href="css/demo.css" rel="stylesheet" />
<link href="css/evol-colorpicker.min.css" rel="stylesheet" />

<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"
type="text/javascript"
></script>
<script
src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"
src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.14.1/jquery-ui.min.js"
type="text/javascript"
></script>
<script src="js/evol-colorpicker.min.js" type="text/javascript"></script>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"url": "https://github.com/evoluteur/colorpicker/issues"
},
"dependencies": {
"jquery": "~3.6.0",
"jquery-ui": "~1.13.0"
"jquery": "~3.7.1",
"jquery-ui": "~1.14.1"
},
"devDependencies": {
"grunt": "^1.4.1",
Expand Down

0 comments on commit 01922c9

Please sign in to comment.