File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+
3
+ ## 2.0.4 - Oct. 7, 2014
4
+
5
+ - spectrum lib for colour picker now defaults to hsv values. Keep hex as
6
+ default for backward compatibility, slc ref #9849
7
+
8
+ ## 2.0.3 - Sept. 22, 2014
9
+
10
+ - when another tooltip trigger is clicked, only close the previous tooltip if
11
+ it does not contain the trigger. slc ref #9801
12
+ - moved utils.debounce() call to fix removal of event handler
13
+ slc ref #10695
2
14
3
15
## 2.0.2 - Sept. 8, 2014
4
16
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ define([
12
12
name : "polyfill-color" ,
13
13
trigger : "input.pat-colour-picker,input.pat-color-picker" ,
14
14
init : function ( $el ) {
15
- return $el . spectrum ( ) ;
15
+ return $el . spectrum ( { preferredFormat : 'hex' } ) ;
16
16
}
17
17
} ;
18
18
You can’t perform that action at this time.
0 commit comments