mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-04-20 03:02:41 -04:00
Fixed #3059 - cannot select text in dialog content
This commit is contained in:
@@ -196,7 +196,7 @@ $.ui.mouse = {
|
||||
|
||||
var self = this,
|
||||
btnIsLeft = (e.which == 1),
|
||||
elIsCancel = (typeof this.options.cancel == "string" ? $(e.target).is(this.options.cancel) : false);
|
||||
elIsCancel = (typeof this.options.cancel == "string" ? $(e.target).parents().add(e.target).filter(this.options.cancel).length : false);
|
||||
if (!btnIsLeft || elIsCancel || !this.mouseCapture(e)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -99,9 +99,14 @@ $.widget("ui.dialog", {
|
||||
self.close();
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
this.uiDialogTitlebar.find("*").add(this.uiDialogTitlebar).each(function() {
|
||||
$.ui.disableSelection(this);
|
||||
});
|
||||
|
||||
if ($.fn.draggable) {
|
||||
uiDialog.draggable({
|
||||
cancel: '.ui-dialog-content',
|
||||
helper: options.dragHelper,
|
||||
handle: '.ui-dialog-titlebar',
|
||||
start: function(e, ui) {
|
||||
@@ -121,6 +126,7 @@ $.widget("ui.dialog", {
|
||||
|
||||
if ($.fn.resizable) {
|
||||
uiDialog.resizable({
|
||||
cancel: '.ui-dialog-content',
|
||||
helper: options.resizeHelper,
|
||||
maxWidth: options.maxWidth,
|
||||
maxHeight: options.maxHeight,
|
||||
|
||||
Reference in New Issue
Block a user