Skip to content

Commit

Permalink
Logical Group Editing (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
phschaad authored Apr 25, 2022
1 parent 0a83400 commit 9fe464c
Show file tree
Hide file tree
Showing 14 changed files with 2,276 additions and 2,271 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true

[*.{js,ts,py,html}]
indent_style = space
indent_size = 4

[*.{css}]
indent_style = space
indent_size = 2
1 change: 0 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/class-name-casing": "warn",
"@typescript-eslint/semi": "warn",
"curly": "off",
"eqeqeq": "warn",
Expand Down
39 changes: 35 additions & 4 deletions media/components/analysis/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<div class="container-fluid" style="padding: 0;">
<div class="row">
<div>
<select class="form-select"
<select class="form-select form-select-sm"
id="scaling-method-input">
<option value="median" selected="selected">
Median
Expand Down Expand Up @@ -86,13 +86,44 @@
</div>
</div>
<hr class="horizontal-divider">
<div id="overlay-toggle-container">
<div id="node-overlay-toggle-container" class="mb-1">
<div>
<span>
Overlays:
Node Overlay:
</span>
</div>
<div id="overlay-toggles">
<div class="container-fluid"
style="padding: 0;">
<div class="row">
<div>
<select class="form-select form-select-sm"
id="node-overlays-input">
<option value="none" selected="selected">
None
</option>
</select>
</div>
</div>
</div>
</div>
<div id="edge-overlay-toggle-container">
<div>
<span>
Edge Overlay:
</span>
</div>
<div class="container-fluid"
style="padding: 0;">
<div class="row">
<div>
<select class="form-select form-select-sm"
id="edge-overlays-input">
<option value="none" selected="selected">
None
</option>
</select>
</div>
</div>
</div>
</div>
<hr class="horizontal-divider">
Expand Down
2 changes: 1 addition & 1 deletion media/components/sdfv/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -208,4 +208,4 @@ <h5 id="info-title"></h5>
</script>
</body>

</html>
</html>
Loading

0 comments on commit 9fe464c

Please sign in to comment.