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
prop
this
Update direct usages of prop inside classes. Instead of a class setting class properties to prop use this.
However, for now, we must maintain the references to the original prop values so we don't break everything.
the current workaround is:
const aircraft = {}; export default class Aircraft { constructor() { this.aircraft = aircraft; prop.aircraft = aircraft; }
This way we can maintain the original props, but still use class properties in the usual way.
There are also references to prop values from other classes sprinkled throughout, those are not being refactored [yet] with this issue.
The text was updated successfully, but these errors were encountered:
work started on branch feature/ATC-43
feature/ATC-43
Sorry, something went wrong.
gameController updated with #96
gameController
This issue was moved to openscope/openscope#62
n8rzz
No branches or pull requests
Update direct usages of
prop
inside classes. Instead of a class setting class properties toprop
usethis
.However, for now, we must maintain the references to the original
prop
values so we don't break everything.the current workaround is:
This way we can maintain the original props, but still use class properties in the usual way.
There are also references to
prop
values from other classes sprinkled throughout, those are not being refactored [yet] with this issue.The text was updated successfully, but these errors were encountered: