Skip to content

Commit

Permalink
Dependencies update.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoluteur committed May 12, 2020
1 parent c8a1d23 commit e457d41
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ npm install evol-colorpicker
First, load [jQuery](http://jquery.com/) (v3.1 or greater), [jQuery UI](http://jqueryui.com/) (v1.12.1 or greater), and the plugin (for earlier version of jQuery-UI, use an earlier version of Colorpicker).

```html
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.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" type="text/javascript" charset="utf-8"></script>
<script src="js/evol-colorpicker.min.js" type="text/javascript" charset="utf-8"></script>
```
Expand Down Expand Up @@ -293,7 +293,7 @@ $("#mycolor").on("mouseover.color", function(event, color){

## License

Copyright (c) 2019 [Olivier Giulieri](https://evoluteur.github.io/).
Copyright (c) 2020 [Olivier Giulieri](https://evoluteur.github.io/).

**evol-colorpicker** is released under the [MIT license](http://github.com/evoluteur/colorpicker/raw/master/LICENSE.md).

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "evol-colorpicker",
"version": "3.4.0",
"version": "3.4.2",
"description": "jQuery UI widget for web color picking which looks like the one in Microsoft Office 2010.",
"homepage": "http://evoluteur.github.io/colorpicker/",
"main": "js/evol-colorpicker.min.js",
Expand Down
4 changes: 2 additions & 2 deletions css/demo.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
evol-colorpicker 3.4.1
(c) 2019 Olivier Giulieri
evol-colorpicker 3.4.2
(c) 2020 Olivier Giulieri
http://evoluteur.github.io/colorpicker/
*/
body {
Expand Down
4 changes: 2 additions & 2 deletions css/evol-colorpicker.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
evol-colorpicker 3.4.1
(c) 2019 Olivier Giulieri
evol-colorpicker 3.4.2
(c) 2020 Olivier Giulieri
http://evoluteur.github.io/colorpicker/
*/
.evo-pop {
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<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.4.1/jquery.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" type="text/javascript"></script>
<script src="js/evol-colorpicker.min.js" type="text/javascript"></script>
</head>
Expand All @@ -26,7 +26,7 @@ <h2 id="github">

<h1 id="title">Evol-ColorPicker</h1>

<p style="clear:both;"><strong>Evol-ColorPicker</strong> (currently v3.4.0) is a web color picker which looks like the one in Microsoft Office 2010.
<p style="clear:both;"><strong>Evol-ColorPicker</strong> (currently v3.4.2) is a web color picker which looks like the one in Microsoft Office 2010.
</p>

<p>
Expand Down Expand Up @@ -255,7 +255,7 @@ <h1 id="title">Evol-ColorPicker</h1>

<p>Evol-ColorPicker is released under the <a href="http://github.com/evoluteur/colorpicker/raw/master/LICENSE.md">MIT license</a>.</p>

<p>&#169; 2019 <a href="https://evoluteur.github.io/">Olivier Giulieri</a></p>
<p>&#169; 2020 <a href="https://evoluteur.github.io/">Olivier Giulieri</a></p>

</body>

Expand Down
10 changes: 5 additions & 5 deletions js/evol-colorpicker.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
evol-colorpicker 3.4.0
evol-colorpicker 3.4.2
ColorPicker widget for jQuery UI
https://github.com/evoluteur/colorpicker
(c) 2019 Olivier Giulieri
(c) 2020 Olivier Giulieri
* Depends:
* jquery.ui.core.js
Expand Down Expand Up @@ -200,7 +200,7 @@ $.widget( "evol.colorpicker", {
var opts=this.options,
labels=opts.strings.split(','),
oTD='<td style="background-color:',
cTD=isIE?'"><div style="width:2px;"></div></td>':'"><span/></td>',
cTD=isIE?'"><div style="width:2px;"></div></td>':'"><span></span></td>',
oTRTH='<tr><th colspan="10" class="ui-widget-content">',
i,
css='evo-palette'+_ie + (opts.customTheme ? ' cust-theme':'');
Expand Down Expand Up @@ -257,7 +257,7 @@ $.widget( "evol.colorpicker", {
_paletteHTML2: function() {
var i, iMax,
oTD='<td style="background-color:#',
cTD=isIE?'"><div style="width:5px;"></div></td>':'"><span/></td>',
cTD=isIE?'"><div style="width:5px;"></div></td>':'"><span></span></td>',
oTableTR='<table class="evo-palette2'+_ie+'"><tr>',
cTableTR='</tr></table>';

Expand All @@ -271,7 +271,7 @@ $.widget( "evol.colorpicker", {
}
h+=cTableTR;
}
h+='<div class="evo-sep"/>';
h+='<div class="evo-sep"></div>';
// gray scale colors
var h2='';
h+=oTableTR;
Expand Down
6 changes: 3 additions & 3 deletions js/evol-colorpicker.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "evol-colorpicker",
"version": "3.4.1",
"version": "3.4.2",
"description": "jQuery UI widget for web color picking which looks like the one in Microsoft Office 2010.",
"copyright": "(c) 2019 Olivier Giulieri",
"copyright": "(c) 2020 Olivier Giulieri",
"homepage": "http://evoluteur.github.io/colorpicker/",
"author": "Olivier Giulieri (https://evoluteur.github.io/)",
"license": "MIT",
Expand All @@ -14,7 +14,7 @@
"url": "https://github.com/evoluteur/colorpicker/issues"
},
"dependencies": {
"jquery": "~3.4.1",
"jquery": "~3.5.1",
"jquery-ui": "~1.12.1"
},
"devDependencies": {
Expand Down

0 comments on commit e457d41

Please sign in to comment.