mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-29 00:34:03 +02:00
JS: Ignore autosubmit elements in the form behavior
This commit is contained in:
parent
9f79f9a48b
commit
c963ee23ff
@ -81,17 +81,13 @@
|
|||||||
if (changed) {
|
if (changed) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if (
|
if ($container.has(origFocus).length
|
||||||
// is the focus among the elements to be replaced?
|
&& autorefresh
|
||||||
$container.has(origFocus).length &&
|
&& $(origFocus).length
|
||||||
// is an autorefresh
|
&& ! $(origFocus).hasClass('autofocus')
|
||||||
autorefresh &&
|
&& ! $(origFocus).hasClass('autosubmit')
|
||||||
|
&& $(origFocus).closest('form').length
|
||||||
// and has focus
|
) {
|
||||||
$(origFocus).length &&
|
|
||||||
!$(origFocus).hasClass('autofocus') &&
|
|
||||||
$(origFocus).closest('form').length
|
|
||||||
) {
|
|
||||||
icinga.logger.debug('Not changing content for ' + containerId + ' form has focus');
|
icinga.logger.debug('Not changing content for ' + containerId + ' form has focus');
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user