mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 00:30:44 +00:00
Merge "MWExtensionWindow: Remove pointless zero argument from ve.debounce call"
This commit is contained in:
commit
6e14a1eb8e
|
@ -19,7 +19,7 @@ ve.ui.MWExtensionWindow = function VeUiMWExtensionWindow() {
|
|||
this.input = null;
|
||||
this.originalMwData = null;
|
||||
|
||||
this.onChangeHandler = ve.debounce( this.onChange.bind( this ), 0 );
|
||||
this.onChangeHandler = ve.debounce( this.onChange.bind( this ) );
|
||||
};
|
||||
|
||||
/* Inheritance */
|
||||
|
|
Loading…
Reference in a new issue