-
Notifications
You must be signed in to change notification settings - Fork 27
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
Object.add is deprecated. #45
Comments
Thanks for bringing this to my attention! I'll have a look at it later today |
Just to double-check, is this what you're referring to: https://atom.io/docs/v0.186.0/upgrading/upgrading-your-package#dispatching-commands ? It looks like they have been deprecated for 'atom-workspace' and 'atom-text-editor', but I am unsure about whether they apply to instances of atom-space-pen views, which is where the package listens for core:cancel. Am I missing something extra? |
I dunno.. It was an auto-generated error/report.
|
Version 1.1.6 has been released, which replaces these deprecated calls :) |
Are you trying to listen for the 'core:cancel' Atom command with
jQuery::on
?jQuery::trigger
can no longer be used to listen for Atom commands. Pleaseuse
atom.commands.add
instead. See the docs athttps://atom.io/docs/api/latest/CommandRegistry
The text was updated successfully, but these errors were encountered: