We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Ember 2.18 we get the error of method.apply is not a function in backburner when changing values in the slider (see screenshot attached).
method.apply is not a function
In line 76 of addon/components/ui-slider.js, the debounce call needs to be extended by a self as first parameter:
self
Current version: Ember.run.debounce(() => { self.set('value', evt.value); },30);
Corrected version: Ember.run.debounce(self, () => { self.set('value', evt.value); },30);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On Ember 2.18 we get the error of
method.apply is not a function
in backburner when changing values in the slider (see screenshot attached).In line 76 of addon/components/ui-slider.js, the debounce call needs to be extended by a
self
as first parameter:Current version:
Ember.run.debounce(() => {
self.set('value', evt.value);
},30);
Corrected version:
Ember.run.debounce(self, () => {
self.set('value', evt.value);
},30);
The text was updated successfully, but these errors were encountered: