-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
fix #7194 Editor errors on Visualize are broken #7702
Merged
Merged
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c7e89a9
fix #7194 Editor errors on Visualize are broken
ppisljar be4a47f
- fixing styles to reduce specificity
ppisljar d019a5e
- adding comment
ppisljar 5a91329
updating to follow new html style guide
ppisljar 7c47e13
updating style
ppisljar 380aafc
fixing typos
ppisljar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,14 @@ | |
<!-- tabs --> | ||
<ul class="nav navbar-nav"> | ||
<li ng-class="{active: sidebar.section == 'data'}" ng-show="sidebar.showData"> | ||
<a class="navbar-link active" ng-click="sidebar.section='data'">Data</a> | ||
<a class="vis-editor-subnav-link" | ||
ng-class="{'is-vis-editor-sub-nav-link-selected': sidebar.section == 'data'}" | ||
ng-click="sidebar.section='data'">Data</a> | ||
</li> | ||
<li ng-class="{active: sidebar.section == 'options'}"> | ||
<a class="navbar-link" ng-click="sidebar.section='options'">Options</a> | ||
<a class="vis-editor-subnav-link" | ||
ng-class="{'is-vis-editor-sub-nav-link-selected': sidebar.section == 'options'}" | ||
ng-click="sidebar.section='options'">Options</a> | ||
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. Same here |
||
</li> | ||
</ul> | ||
|
||
|
@@ -26,7 +30,7 @@ | |
<li ng-if="visualizeEditor.softErrorCount() > 0" | ||
disabled | ||
tooltip="{{ visualizeEditor.describeErrors() }}" tooltip-placement="bottom" tooltip-popup-delay="400" tooltip-append-to-body="1"> | ||
<a class="danger navbar-link"> | ||
<a class="vis-editor-subnav-link vis-editor-subnav-link--danger"> | ||
<i class="fa fa-warning"></i> | ||
</a> | ||
</li> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Small nit, the attributes should all be on their own lines, the
>
of the opening tag should be on its own line, and the text and closing tag should be on their own lines: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.
I'm checking some of the other .html files and i cant find this anywhere (last > in a seperate line) ...
also my editor (webstorm) wont put > in line with <a (no indent) if i put it in a seperate line ....
would it be possible to configure .eseditorconfig and .eslint to follow this style ?
also could you update html style guide with this information:
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.
Hey Peter, the most recent version of the style guide exemplifies this in the examples. Should I update the descriptions to point this out more, or do you think this is enough?
This is a pretty recent change to the style guide. You can check out this PR for some context.
I'm using Sublime, so I'm not sure why WebStorm would be unhappy with that formatting... is this something you can look into fixing on your end? Let me know if you want to Zoom about this and tackle it together.
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.
thanks CJ, im not sure how i managed to open the old style guide :) i managed to get webstorm working with it. I updated whole sidebar.html to follow the new style guide, can you please check if it looks ok ?
i still wonder if it would be possible to make a precommit check to enforce this (like we do with eslint) ?