Merge "MWExtensionWindow: Remove pointless zero argument from ve.debounce call"

This commit is contained in:
jenkins-bot 2017-03-15 18:24:08 +00:00 committed by Gerrit Code Review
commit 6e14a1eb8e

View file

@ -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 */