Show hex input field on color picker.

This enables the input field in the color pickers that allows users to
specify the hex of the color they would like to apply.

Fixes: #1364.
This commit is contained in:
Brock Whittaker 2016-08-16 11:13:19 -07:00 committed by Tim Abbott
parent 3c1027a584
commit f7dac2b2e3
1 changed files with 3 additions and 0 deletions

View File

@ -79,6 +79,7 @@ var stream_color_palette = [
var subscriptions_table_colorpicker_options = {
clickoutFiresChange: true,
showPalette: true,
showInput: true,
palette: stream_color_palette
};
@ -114,6 +115,7 @@ exports.sidebar_popover_colorpicker_options = {
clickoutFiresChange: true,
showPaletteOnly: true,
showPalette: true,
showInput: true,
flat: true,
palette: stream_color_palette,
change: picker_do_change_color
@ -122,6 +124,7 @@ exports.sidebar_popover_colorpicker_options = {
exports.sidebar_popover_colorpicker_options_full = {
clickoutFiresChange: true,
showPalette: true,
showInput: true,
flat: true,
cancelText: "",
chooseText: "choose",