mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-07-27 08:29:53 +03:00
Merge feee0f0be1
into bcf137386a
This commit is contained in:
commit
79f6587a6a
|
@ -125,8 +125,8 @@
|
||||||
(function() {
|
(function() {
|
||||||
// This part of code will detect autofill when the page is loading (username and password inputs for example)
|
// This part of code will detect autofill when the page is loading (username and password inputs for example)
|
||||||
var loading = setInterval(function() {
|
var loading = setInterval(function() {
|
||||||
$("input").each(function() {
|
$("input[type!=checkbox]").each(function() {
|
||||||
if ($(this).val() !== $(this).attr("value")) {
|
if ($(this).val() && $(this).val() !== $(this).attr("value")) {
|
||||||
$(this).trigger("change");
|
$(this).trigger("change");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user