-
Notifications
You must be signed in to change notification settings - Fork 10.6k
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
Convert ui-vrecord Package to JS #6473
Conversation
return c; | ||
} | ||
export const VRecDialog = new __initClass__(class { | ||
static initClass() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use a normal constructor
?
@@ -0,0 +1,63 @@ | |||
export const VRecDialog = class { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you forget the new
?
test.txt
Outdated
@@ -0,0 +1,264 @@ | |||
./packages/rocketchat-lib/client/MessageAction.coffee |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you add this by mistake?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you change the VRecDialog
from a global variable to an export, you should modify the files using it to import the file
@RocketChat/core