Fixes #2609 - Zammad shows Customers in Owner-Selection on IE (root cause: App.ControllerForm returns no params on IE 11).
This commit is contained in:
parent
57176aedbb
commit
abfb34dc7e
1 changed files with 3 additions and 2 deletions
|
@ -230,8 +230,9 @@ jQuery.fn.extend( {
|
|||
var rcheckableType = ( /^(?:checkbox|radio)$/i );
|
||||
return this.map( function() {
|
||||
|
||||
// Can add propHook for "elements" to filter or add form elements
|
||||
var elements = jQuery.prop( this, "elements" );
|
||||
// We dont use jQuery.prop( this, "elements" ); here anymore
|
||||
// because it did not work out for IE 11
|
||||
var elements = $(this).find('*').filter(':input');
|
||||
return elements ? jQuery.makeArray( elements ) : this;
|
||||
} )
|
||||
.filter( function() {
|
||||
|
|
Loading…
Reference in a new issue