jodit icon indicating copy to clipboard operation
jodit copied to clipboard

Brush tool missing Hex color entry

Open daniwaxman opened this issue 4 years ago • 2 comments

Jodit Version:** 3.2.60

Browser: All OS: All

data() {
        return {
            editor: null,
            buttons: [
                "bold",
                "strikethrough",
                "underline",
                "italic",
                "|",
                "ul",
                "ol",
                "|",
                // "outdent",
                // "indent",
                "|",
                // "fontsize",
                "brush",
                "|",
                "link",
                "align"
            ],
            overlay: null,
            container: null,
            toolbar: null,
        }
    },

Expected behavior: Using the above code to generate my toolbar the Brush tool I expect the Brush tool to allow entering an RGB or HEX value as a color option as displayed on the demo page

Actual behavior: The Brush tool has a preselected palate of colors and I can't enter my own color.

daniwaxman avatar Oct 01 '20 13:10 daniwaxman

@xdan I see you marked this as a Feature Request but the Jodit demo pagehttps://xdsoft.net/jodit/ shows this functionality as already existing.

daniwaxman avatar Oct 01 '20 18:10 daniwaxman

@daniwaxman It is not HEX input, it is just usual input[type=color] You can enable it https://xdsoft.net/jodit/doc/options/showBrowserColorPicker/

xdan avatar Oct 29 '20 09:10 xdan