You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Triggers error: Uncaught TypeError: ((jQuery.event.special[handleObj.origType] || {}).handle || handleObj.handler).apply is not a function on the handling of events #307
$([document])
// Hide on clicks outside of the control
.on('mousedown touchstart', function(event) {
if(!$(event.target).parents().add(event.target).hasClass('minicolors')) {
hide();
}
})
etc...