We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f4a65c + 6470bed commit 3885b9aCopy full SHA for 3885b9a
changes.md
@@ -1,4 +1,16 @@
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
14
15
## 2.0.2 - Sept. 8, 2014
16
src/pat/colour-picker.js
@@ -12,7 +12,7 @@ define([
name: "polyfill-color",
trigger: "input.pat-colour-picker,input.pat-color-picker",
init: function($el) {
- return $el.spectrum();
+ return $el.spectrum({preferredFormat: 'hex'});
}
17
};
18
0 commit comments