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
Родитель 4220e0c7da
Коммит 3c7fbbef22
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

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