-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* UI Refresh Foundations * Update client.js * More buttons/Layout * Update package.json * Update client.js * Update client.js * Initial Breaks * Update CHANGELOG.md * More simplification * Update CHANGELOG.md * UI Changes * Serialport fixes. * Update zwave-js.js * Map updates * Map Updates * Update client.js * Update client.js * Update client.js * Update client.js * Remove Optional Chaining * Correct node name prop * URI fixes and map * Move Files * Multi Network Support * Remove Fatal Retry * get ValueBD * Value DB * Almost There * Update Help * Update README.md * Filter updates * Map Rendering * Update maprender.js * Status Function, SmartStart Fix, Styling, Local Data Switch * Map * Final Edits * Update Gif * LGTM Alerts * UI Optimisations * More UI Optimisations * More UI Optimisations * More UI Optimisations * we like More UI Optimisations * Nits * Update CHANGELOG.md * Update package.json * Initial Reported Nits * Improvements * Nits * Final 1 * Update README.md
- Loading branch information
1 parent
ea6aab9
commit 5e19fa5
Showing
34 changed files
with
5,496 additions
and
2,104 deletions.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<!DOCTYPE html> | ||
<html style="height: 100vh"> | ||
<head> | ||
<title>Node RED Z-Wave JS Network Mesh</title> | ||
<script type="text/javascript" src="{BASE}/jquery-3.6.0.min.js"></script> | ||
<script type="text/javascript" src="{BASE}/cytoscape.min.js"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/weaver.min.js"></script> | ||
<script type="text/javascript" src="{BASE}/cytoscape-spread.js"></script> | ||
<script type="text/javascript" src="{BASE}/maprender.js"></script> | ||
|
||
<style> | ||
#Details { | ||
width: 400px; | ||
height: 400px; | ||
background-color: rgb(241, 241, 241); | ||
font-size: 14px; | ||
font-family: 'Helvetica Neue Light', 'Calibiri Light', Roboto; | ||
-webkit-border-radius: 6px; | ||
-moz-border-radius: 6px; | ||
border-radius: 6px; | ||
border-style: solid; | ||
border-width: 1px; | ||
-webkit-box-shadow: 10px 10px 5px -7px rgba(0, 0, 0, 0.75); | ||
-moz-box-shadow: 10px 10px 5px -7px rgba(0, 0, 0, 0.75); | ||
box-shadow: 10px 10px 5px -7px rgba(0, 0, 0, 0.75); | ||
padding: 10px; | ||
box-sizing: content-box; | ||
} | ||
</style> | ||
</head> | ||
<body style="height: 100%"> | ||
<div style="display: flex; width: 100%; height: 100%"> | ||
<div id="Details"> | ||
<span | ||
>Select A node to view information.<br /><br />NOTE: Disconnected | ||
Nodes will have their routes determined, after they first | ||
communicate.</span | ||
> | ||
</div> | ||
<div | ||
id="NetworkMesh" | ||
style="width: calc(100% - 400px); height: 100%" | ||
></div> | ||
</div> | ||
<script> | ||
Render('{BASE}'); | ||
</script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.