Skip to content

Commit 3885b9a

Browse files
committed
Merge branch 'master' into release
2 parents 0f4a65c + 6470bed commit 3885b9a

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

changes.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
# 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
214

315
## 2.0.2 - Sept. 8, 2014
416

src/pat/colour-picker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ define([
1212
name: "polyfill-color",
1313
trigger: "input.pat-colour-picker,input.pat-color-picker",
1414
init: function($el) {
15-
return $el.spectrum();
15+
return $el.spectrum({preferredFormat: 'hex'});
1616
}
1717
};
1818

0 commit comments

Comments
 (0)