mirror of
https://github.com/PitPik/colorPicker.git
synced 2025-09-22 07:32:38 -06:00
updated instance controll
This commit is contained in:
parent
c3c9a900ac
commit
04844f7530
File diff suppressed because one or more lines are too long
@ -127,9 +127,6 @@
|
|||||||
}, 0);
|
}, 0);
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!colorPickers.evt || off) {
|
|
||||||
colorPickers.evt = true; // prevent new eventListener for window
|
|
||||||
|
|
||||||
$(window)[onOff]('mousedown.colorPicker', function(e) {
|
$(window)[onOff]('mousedown.colorPicker', function(e) {
|
||||||
var colorPicker = colorPickers.current,
|
var colorPicker = colorPickers.current,
|
||||||
$colorPicker = $(colorPicker ? colorPicker.nodes.colorPicker : undefined),
|
$colorPicker = $(colorPicker ? colorPicker.nodes.colorPicker : undefined),
|
||||||
@ -151,26 +148,21 @@
|
|||||||
$colorPicker.hide(animationSpeed);
|
$colorPicker.hide(animationSpeed);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
|
||||||
},
|
},
|
||||||
that = this,
|
that = this,
|
||||||
colorPickers = this.colorPickers || [], // this is a way to prevent data binding on HTMLElements
|
colorPickers = $.fn.colorPicker.colorPickers || [], // this is a way to prevent data binding on HTMLElements
|
||||||
testColors = new window.Colors({
|
testColors = new window.Colors({
|
||||||
customBG: (config && config.customBG) || '#FFFFFF',
|
customBG: (config && config.customBG) || '#FFFFFF',
|
||||||
allMixDetails: true
|
allMixDetails: true
|
||||||
});
|
});
|
||||||
|
|
||||||
this.colorPickers = colorPickers;
|
$.fn.colorPicker.colorPickers = colorPickers;
|
||||||
|
|
||||||
$(this).each(function(idx, elm) {
|
$(this).each(function(idx, elm) {
|
||||||
if (config === 'destroy') {
|
|
||||||
// doEventListeners(elm, (config && config.multipleInstances), true);
|
// doEventListeners(elm, (config && config.multipleInstances), true);
|
||||||
$(elm).off('.colorPicker');
|
$(elm).off('.colorPicker');
|
||||||
$(window).off('.colorPicker');
|
$(window).off('.colorPicker');
|
||||||
if (colorPickers[idx]) {
|
if (config !== 'destroy') {
|
||||||
colorPickers[idx].destroyAll();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
var value = elm.value.split('(');
|
var value = elm.value.split('(');
|
||||||
$(elm).data('colorMode', value[1] ? value[0].substr(0, 3) : 'HEX');
|
$(elm).data('colorMode', value[1] ? value[0].substr(0, 3) : 'HEX');
|
||||||
doEventListeners(elm, (config && config.multipleInstances), false);
|
doEventListeners(elm, (config && config.multipleInstances), false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user