-
Notifications
You must be signed in to change notification settings - Fork 7.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
Tech 2.0 #2057
Tech 2.0 #2057
Changes from all commits
6576e4e
ae25b8f
34f90bb
537907e
005aa9d
11bbb7b
19d19f8
358880b
539c660
d28137a
0147fc9
779354c
56d22ee
1e47782
6abec67
54db3dd
cbc0605
6af5009
f815c23
6e803e5
693eab4
d699417
0b51928
ccf0308
a8062ed
5fa8eea
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
"undef" : true, | ||
"laxbreak" : true, | ||
"esnext" : true, | ||
"eqeqeq" : true, | ||
"predef" : [ | ||
"_V_", | ||
"goog", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,4 +62,4 @@ class TextTrackButton extends MenuButton { | |
} | ||
|
||
MenuButton.registerComponent('TextTrackButton', TextTrackButton); | ||
export default TextTrackButton; | ||
export default TextTrackButton; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why's the export removed here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oops my bad, fixing this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh! I haven't removed the line, only the EOF empty line (stupid Atom doing that all the time :/). You can check it's still there. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok cool. Yeah I had to update my atom config to fix that recently. |
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.
We should be careful about changes like this that aren't directly related and touch a lot of files. We've got a hack week going on right now and master is going to change a lot, so there's going to be a lot of merge conflicts.
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.
Yea sorry about that. I should have left the eqeqeq option in jslint for another pull request. I'm trying to fix the unit tests ASAP so we could merge quickly.