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

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

Closes #2177

Merge request !1405
parent edc32a6b
No related branches found
No related tags found
No related merge requests found
...@@ -127,15 +127,6 @@ STUDIP.ready((event) => { ...@@ -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 // Use select2 for crossbrowser compliant select styling and
// handling // handling
$.fn.select2.amd.define('select2/i18n/de', [], function() { $.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