Skip to content
Snippets Groups Projects
Commit 033273b6 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2057725 by tim.plunkett, quicksketch: Fixed Regular forms cannot be...

Issue #2057725 by tim.plunkett, quicksketch: Fixed Regular forms cannot be submitted when used as modal forms.
parent b435b703
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment