aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/select2-jquery-ui-fix.js
blob: edaa4899a82e813e88e9c4fd1b0c7dc2b6def4c3 (plain)
1
2
3
4
5
6
7
8
9
/* https://github.com/ivaynberg/select2/issues/1246 */

;(function($) {

  $.ui.dialog.prototype._allowInteraction = function(e) {
    return !!$(e.target).closest('.ui-dialog, .ui-datepicker, .select2-drop').length;
  };

})(jQuery);