Browse Source

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

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

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