diff options
author | Felix Nagel <info@felixnagel.com> | 2013-05-24 19:47:42 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2013-05-24 19:47:42 +0200 |
commit | cccb8c6e826b8140dd99f225a28cc6f725e86ced (patch) | |
tree | bb5ca77b1e1230a059f59d3e86ef933d5bbe03a6 /ui/jquery.ui.dialog.js | |
parent | 7e0737edc03d36b07c45981e0a6b58f8aab3824e (diff) | |
parent | c19e7b3496d14b40e71ba892213889fc8cc81d4f (diff) | |
download | jquery-ui-cccb8c6e826b8140dd99f225a28cc6f725e86ced.tar.gz jquery-ui-cccb8c6e826b8140dd99f225a28cc6f725e86ced.zip |
Merge branch 'master' into selectmenu
Diffstat (limited to 'ui/jquery.ui.dialog.js')
-rw-r--r-- | ui/jquery.ui.dialog.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js index b01907acf..16095292c 100644 --- a/ui/jquery.ui.dialog.js +++ b/ui/jquery.ui.dialog.js @@ -342,7 +342,10 @@ $.widget( "ui.dialog", { } }); - this.uiDialogTitlebarClose = $("<button></button>") + // support: IE + // Use type="button" to prevent enter keypresses in textboxes from closing the + // dialog in IE (#9312) + this.uiDialogTitlebarClose = $( "<button type='button'></button>" ) .button({ label: this.options.closeText, icons: { |