-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Alphabetize and limit GLOBALS to 80 chars in html #2275
Alphabetize and limit GLOBALS to 80 chars in html #2275
Conversation
DEFAULT_LANGUAGE_CODE: JSON.parse( | ||
'{{DEFAULT_LANGUAGE_CODE|js_string}}'), | ||
DEV_MODE: JSON.parse('{{DEV_MODE|js_string}}'), | ||
INVALID_NAME_CHARS: JSON.parse('{{INVALID_NAME_CHARS|js_string}}'), | ||
MINIFICATION: JSON.parse('{{MINIFICATION|js_string}}'), | ||
RTE_COMPONENT_SPECS: JSON.parse('{{RTE_COMPONENT_SPECS|js_string}}'), |
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.
Should this go lower?
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.
Oh, I see. I had assumed that https://github.com/oppia/oppia/pull/2275/files#diff-f66cda1f67929310d3b56713d450f96aR93 refers to all keys declared below it. Thus, didn't mix and match. But the comment is just for POST_COMPLETION_HOOKS
, right ?
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.
Yep!
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.
Done.
LGTM, thanks @526avijitgupta! I noticed one small thing, but feel free to merge after you fix it and Travis checks pass. |
Current coverage is 48.00%@@ develop #2275 diff @@
==========================================
Files 185 185
Lines 15852 15852
Methods 2720 2720
Messages 0 0
Branches 2689 2689
==========================================
Hits 7609 7609
Misses 8243 8243
Partials 0 0
|
* Alphabetize and limit GLOBALS to 80 chars * Address review comment
* Alphabetize and limit GLOBALS to 80 chars * Address review comment
As discussed in #2272
@seanlip Please review.