Issue #2057725 by tim.plunkett, quicksketch: Fixed Regular forms cannot be submitted when used as modal forms.

8.0.x
webchick 2013-08-07 12:52:15 -07:00
parent b435b703d6
commit 033273b62d
1 changed files with 0 additions and 9 deletions

View File

@ -33,9 +33,6 @@
}
}
},
detach: function (context, settings) {
$(context).find('form').off('submit.dialogSubmit');
},
/**
* Scan a dialog for any primary buttons and move them to the button area.
@ -69,12 +66,6 @@
}
});
});
if ($buttons.length) {
$dialog.find('form').on('submit.dialogSubmit', function (e) {
$buttons.first().trigger('click');
e.preventDefault();
});
}
return buttons;
}
};