mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-13 05:07:01 +03:00
check more keycodes so that label-placeholders don't disappear
This commit is contained in:
parent
ee8d7bfae2
commit
68f5e99375
|
@ -61,7 +61,18 @@ const Util = (($) => {
|
||||||
if (typeof event.which === 'undefined') {
|
if (typeof event.which === 'undefined') {
|
||||||
return true
|
return true
|
||||||
} else if (typeof event.which === 'number' && event.which > 0) {
|
} else if (typeof event.which === 'number' && event.which > 0) {
|
||||||
return !event.ctrlKey && !event.metaKey && !event.altKey && event.which !== 8 && event.which !== 9
|
return (
|
||||||
|
!evt.ctrlKey
|
||||||
|
&& !evt.metaKey
|
||||||
|
&& !evt.altKey
|
||||||
|
&& evt.which != 8 // backspace
|
||||||
|
&& evt.which != 9 // tab
|
||||||
|
&& evt.which != 13 // enter
|
||||||
|
&& evt.which != 16 // shift
|
||||||
|
&& evt.which != 17 // ctrl
|
||||||
|
&& evt.which != 20 // caps lock
|
||||||
|
&& evt.which != 27 // escape
|
||||||
|
)
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user