-
Notifications
You must be signed in to change notification settings - Fork 3
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
Multi language #3
base: master
Are you sure you want to change the base?
Conversation
@opoet7 It looks like exitfromloop = false;
var OS_LIST = [];
var cmdList = [];
var OS_ARRAY_WITH_DATA = {}; was changed to this: exitfromloop = !1;
var OS_LIST = [],
cmdList = [],
OS_ARRAY_WITH_DATA = {}; which looks like typical minified JavaScript code. Also there are no comments, and many newlines were stripped. But the HTML looks a lot better... 🤔 |
index.html
Outdated
@@ -67,6 +67,9 @@ | |||
Submit | |||
</button> | |||
</form> | |||
<form class="navbar-form navbar-right" role="search"> | |||
<select id="language" name="language" class="form-control"></select> | |||
</form> |
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.
There's mixed whitespace (spaces/tabs) in these lines as well.
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.
It seems to me like someone should:
- Close this PR
- Open a new PR completely normalizing the whitespace in all files
- After that is merged, open a new version of this PR
No description provided.