mirror of
https://github.com/PitPik/tinyColorPicker
synced 2025-08-12 11:42:45 -06:00
added css prepend
This commit is contained in:
parent
44ffe523b6
commit
999178d089
@ -106,7 +106,8 @@ $('.color').colorPicker({
|
||||
light: '#DDD' // default font color if background is dark
|
||||
preventFocus: false // prevents default on focus of input fields (e.g. no keyboard on mobile)
|
||||
body: document.body // the element where the events are attached to (touchstart, mousedown, pointerdown, focus, click, change),
|
||||
forceAlpha: // force printing alpha channel (undefined = auto; false = never print alpha)
|
||||
forceAlpha: // force printing alpha channel (undefined = auto; false = never print alpha),
|
||||
cssPrepend: // makes add CSS being added to the beginning of the <head> instead of to the end
|
||||
});
|
||||
```
|
||||
See the following section or the demos on how the callbacks work and what you can do with them...
|
||||
|
@ -123,8 +123,9 @@
|
||||
}
|
||||
|
||||
function build() {
|
||||
$('head').append('<style type="text/css" id="tinyColorPickerStyles">' +
|
||||
(_options.css || _css) + (_options.cssAddon || '') + '</style>');
|
||||
$('head')[_options.cssPrepend ? 'prepend' : 'append']
|
||||
('<style type="text/css" id="tinyColorPickerStyles">' +
|
||||
(_options.css || _css) + (_options.cssAddon || '') + '</style>');
|
||||
|
||||
return $(_html).css({'margin': _options.margin})
|
||||
.appendTo('body')
|
||||
@ -281,7 +282,8 @@
|
||||
scrollResize: true,
|
||||
gap: 4,
|
||||
dark: '#222',
|
||||
light: '#DDD'
|
||||
light: '#DDD',
|
||||
// cssPrepend: true,
|
||||
// forceAlpha: undefined,
|
||||
// css: '',
|
||||
// cssAddon: '',
|
||||
|
File diff suppressed because one or more lines are too long
4
jqColorPicker.min.js
vendored
4
jqColorPicker.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user