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

remotes/origin/fix-10825
Vincent Petry 12 years ago
parent 4220e0c7da
commit 3c7fbbef22
  1. 4
      core/js/singleselect.js

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

Loading…
Cancel
Save