Do not close container/slider when clicking on single select field

This commit is contained in:
Vincent Petry 2014-08-15 12:43:24 +02:00
parent 4220e0c7da
commit 3c7fbbef22
1 changed files with 4 additions and 0 deletions

View File

@ -87,6 +87,10 @@
$(this).tipsy('hide');
}
});
input.click(function(ev) {
// prevent clicks to close any container
ev.stopPropagation();
});
});
};
})(jQuery);