Skip to content
Snippets Groups Projects
Commit 62644199 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

remove special handling of input[type=image][formaction], fixes #2177

Closes #2177

Merge request studip/studip!1405
parent 483c1c3f
No related branches found
No related tags found
1 merge request!4Draft: Icon creation
......@@ -127,15 +127,6 @@ STUDIP.ready((event) => {
});
// simulate formaction attribute for input[type=image] in IE11
$(document).on('click', 'input[type=image][formaction]', function() {
if ($(this).attr('data-confirm') === undefined) {
$(this)
.closest('form')
.attr('action', $(this).attr('formaction'));
}
});
// Use select2 for crossbrowser compliant select styling and
// handling
$.fn.select2.amd.define('select2/i18n/de', [], function() {
......
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