mirror of
https://github.com/vrana/adminer.git
synced 2025-08-26 15:54:34 +02:00
Unselect original function on key up
This commit is contained in:
@@ -435,6 +435,16 @@ function functionChange(select) {
|
||||
helpClose();
|
||||
}
|
||||
|
||||
/** Call this.onchange() if value changes
|
||||
* @this HTMLInputElement
|
||||
*/
|
||||
function keyupChange() {
|
||||
if (this.value != this.getAttribute('value')) {
|
||||
this.onchange();
|
||||
this.setAttribute('value', this.value);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/** Create AJAX request
|
||||
|
Reference in New Issue
Block a user