Skip to content

Commit 5716aed

Browse files
committed
Version 3.3.2.
1 parent b2df895 commit 5716aed

File tree

8 files changed

+18
-10
lines changed

8 files changed

+18
-10
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Check the [online demo](http://evoluteur.github.com/colorpicker/index.html) for
2121

2222

2323
<a name="Installation"></a>
24+
2425
## Installation
2526

2627
Download or fork **evol-colorpicker** at [GitHub](https://github.com/evoluteur/colorpicker).
@@ -42,6 +43,7 @@ npm install evol-colorpicker
4243
```
4344

4445
<a name="Usage"></a>
46+
4547
## Usage
4648

4749
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).
@@ -84,12 +86,14 @@ Using the same syntax, the widget can also be instanciated on a `<div>` or a `<s
8486

8587

8688
<a name="Theming"></a>
89+
8790
## Theming
8891

8992
evol-colorpicker is as easily themeable as any jQuery UI widget, using one of the [jQuery UI themes](http://jqueryui.com/themeroller/#themeGallery) or your own custom theme made with [Themeroller](http://jqueryui.com/themeroller/).
9093

9194

9295
<a name="Options"></a>
96+
9397
## Options
9498

9599
evol-colorpicker provides several options to customize its behaviour:
@@ -206,6 +210,7 @@ Defaults to *false*.
206210

207211

208212
<a name="Methods"></a>
213+
209214
## Methods
210215

211216
### clear()
@@ -260,6 +265,7 @@ $("#mycolor").colorpicker("hidePalette");
260265
```
261266

262267
<a name="Events"></a>
268+
263269
## Events
264270

265271
### change.color
@@ -283,6 +289,7 @@ $("#mycolor").on("mouseover.color", function(event, color){
283289
```
284290

285291
<a name="License"></a>
292+
286293
## License
287294

288295
Copyright (c) 2018 [Olivier Giulieri](https://evoluteur.github.io/).

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "evol-colorpicker",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "jQuery UI widget for web color picking which looks like the one in Microsoft Office 2010.",
55
"homepage": "http://evoluteur.github.io/colorpicker/",
66
"main": "js/evol-colorpicker.min.js",

css/demo.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
evol-colorpicker 3.3.1
2+
evol-colorpicker 3.3.2
33
(c) 2018 Olivier Giulieri
44
http://evoluteur.github.io/colorpicker/
55
*/

css/evol-colorpicker.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
evol-colorpicker 3.3.1
2+
evol-colorpicker 3.3.2
33
(c) 2018 Olivier Giulieri
44
http://evoluteur.github.io/colorpicker/
55
*/

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h2 id="github">
2626

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

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

3232
<p>

js/evol-colorpicker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
evol-colorpicker 3.3.1
2+
evol-colorpicker 3.3.2
33
ColorPicker widget for jQuery UI
44
55
https://github.com/evoluteur/colorpicker
@@ -68,7 +68,7 @@ var _idx=0,
6868

6969
$.widget( "evol.colorpicker", {
7070

71-
version: '3.3.1',
71+
version: '3.3.2',
7272

7373
options: {
7474
color: null, // example:'#31859B'

js/evol-colorpicker.min.js

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "evol-colorpicker",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "jQuery UI widget for web color picking which looks like the one in Microsoft Office 2010.",
55
"copyright": "(c) 2018 Olivier Giulieri",
66
"homepage": "http://evoluteur.github.io/colorpicker/",

0 commit comments

Comments
 (0)