Skip to content

Commit

Permalink
Bump version to 1.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
recurser committed Apr 7, 2013
1 parent a6f1a72 commit 007032b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.2
1.1.3
12 changes: 6 additions & 6 deletions jquery.simple-color.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Version: 1.1.2 (201304062015)
* Version: 1.1.3 (201304080141)
*/
(function($) {
/**
Expand Down Expand Up @@ -54,7 +54,7 @@
* colorCodeColor: Text color of the color code inside the button. Only used if 'displayColorCode' is true.
* Default value: '#FFF'
*
* callback: Callback function to call after a color has been chosen.
* onSelect: Callback function to call after a color has been chosen.
* Default value: null
* Returns: hex value
*
Expand Down Expand Up @@ -118,7 +118,7 @@
displayColorCode: this.attr('displayColorCode') || false,
colorCodeAlign: this.attr('colorCodeAlign') || 'center',
colorCodeColor: this.attr('colorCodeColor') || '#FFF',
callback: null,
onSelect: null,
onCellEnter: null,
onClose: null,
livePreview: false
Expand Down Expand Up @@ -262,9 +262,9 @@
if (options.displayColorCode) {
event.data.display_box.text('#' + this.id);
}
// If a callback function is defined then excecute it.
if (options.callback) {
options.callback(this.id);
// If an onSelect callback function is defined then excecute it.
if (options.onSelect) {
options.onSelect(this.id);
}

});
Expand Down
6 changes: 3 additions & 3 deletions jquery.simple-color.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 007032b

Please sign in to comment.