mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-01-19 16:52:59 +08:00
Removing unneeded arg in syncInstanceInputs
This commit is contained in:
parent
f71917377f
commit
46c809cbf9
@ -230,7 +230,7 @@ class SimpleKeyboard {
|
||||
/**
|
||||
* Enforce syncInstanceInputs, if set
|
||||
*/
|
||||
if (this.options.syncInstanceInputs) this.syncInstanceInputs(this.input);
|
||||
if (this.options.syncInstanceInputs) this.syncInstanceInputs();
|
||||
|
||||
/**
|
||||
* Calling onChange
|
||||
@ -363,7 +363,7 @@ class SimpleKeyboard {
|
||||
/**
|
||||
* Enforce syncInstanceInputs, if set
|
||||
*/
|
||||
if (this.options.syncInstanceInputs) this.syncInstanceInputs(this.input);
|
||||
if (this.options.syncInstanceInputs) this.syncInstanceInputs();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -376,7 +376,7 @@ class SimpleKeyboard {
|
||||
/**
|
||||
* Enforce syncInstanceInputs, if set
|
||||
*/
|
||||
if (this.options.syncInstanceInputs) this.syncInstanceInputs(this.input);
|
||||
if (this.options.syncInstanceInputs) this.syncInstanceInputs();
|
||||
|
||||
return this.input[inputName];
|
||||
}
|
||||
@ -393,7 +393,7 @@ class SimpleKeyboard {
|
||||
/**
|
||||
* Enforce syncInstanceInputs, if set
|
||||
*/
|
||||
if (this.options.syncInstanceInputs) this.syncInstanceInputs(this.input);
|
||||
if (this.options.syncInstanceInputs) this.syncInstanceInputs();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user