-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
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
Throttling function #1993
Comments
Pull request has been merged to the Autocomplete feature branch (#1751). It will automatically get merged with it. |
Fixed in #1751. |
plugin.js?t=H4PG:160 Uncaught TypeError: CKEDITOR.tools.throttle is not a function |
I am also getting the very same error what @fahamjv had mentioned in his last post. Is there a known resolution to this issue? I don't see a throttle() function in CKEDITOR.tools. Or, am I missing something? |
Hello, you can find the |
@Dumluregn Thank you for such a prompt reply. It was a mistake at my end. After going through the documentation, realized I needed to upgrade my CKEditor to a later version to have the throttle() function since it was introduced in 4.11.0. Thank you once again :) I hope this fixes the issue at my end. |
Type of report
Feature request
Provide description of the new feature
Throttling function is required to implement #1972 feature. We need a throttling function that can accept, and pass arguments in the throttled function.
Note that the function should work the same way as eventBuffer does in terms of being called, so, say you have a throttling set to 100 ms and you have following calls:
The throttled function should be executed thee times with following offsets:
Please see #1983 (comment) discussion for more information about requirements.
Differences from
tools.eventsBuffer
The text was updated successfully, but these errors were encountered: