-
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
combine all editors to a single mega-editor #134
Conversation
@@ -9,6 +9,22 @@ kb-code-editor { | |||
.editor { | |||
height: 100%; | |||
width: 100%; | |||
&.half-editor { |
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.
Rule declaration should be preceded by an empty line
}); | ||
} | ||
}; | ||
|
||
vm.shouldShowCompiledView = function() { | ||
vm.showCompiledView = editorSettings.syntaxMode === 'json' || editorSettings.syntaxMode === 'markdown'; |
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.
Line must be at most 80 characters
}); | ||
} | ||
}; | ||
}); |
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.
Missing line feed at file end
When we have empty object viewed in JSON editor, the text is dark on dark, which makes it hard to read. |
top: 0; | ||
|
||
.json-formatter-row { | ||
color: white; |
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.
Color white
should be written in hexadecimal form as #ffffff
Color literals like white
should only be used in variable declarations; they should be referred to via variable everywhere else.
combine all editors to a single mega-editor
Change Summary
combine all editors into a MEGA-EDITOR [resolves combine editors #133]
make
es6
open asjavascript
[resolves Add temporary es6 support #135 ]More info
BASE: https://kibibit-demo.herokuapp.com/
MODIFIED: https://kibibit-demo-pr-134.herokuapp.com/
Scenario to check:
try and change existing file types to
json
ormarkdown
, try opening a file in one of those formats, and try changing the style of the default (no file) documentBefore you submit a PR, make sure you did the following things: