-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from dvd101x/plot
Plot
- Loading branch information
Showing
12 changed files
with
353 additions
and
98 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
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 |
---|---|---|
@@ -1,37 +1,44 @@ | ||
|
||
ToDo | ||
==== | ||
- [ ] Match inputs and outputs | ||
- [ ] Change worker to modules | ||
- [ ] Details | ||
- [x] Cleanup | ||
- [x] JS docs | ||
- [ ] Rename variables | ||
- [ ] Sessions to Editor States | ||
- [x] 0 index Sessions | ||
- [x] Array fill null for initial EditorStates | ||
- [ ] Custom help | ||
- [ ] Function finder | ||
- [ ] Variable finder | ||
- [ ] Drag and Drop | ||
- [ ] Download text | ||
|
||
|
||
# Plots | ||
- [ ] Import plotly | ||
- [ ] Return objects | ||
- [ ] plot types | ||
- [x] Import plotly | ||
- [x] Return objects | ||
- [x] plot types | ||
- [ ] doc types | ||
- [ ] result type | ||
- [x] result type | ||
- [ ] Document plots | ||
- [ ] Add plotly | ||
- [x] More tests | ||
- [ ] Format plot output | ||
|
||
## Extra | ||
- [ ] Match outputs | ||
- [ ] Include dates (to work with multiple tabs) | ||
- [ ] Variables in scope | ||
- [ ] Help files | ||
- [x] Eval expressions vs blocks | ||
- [ ] Custom help | ||
- [ ] Function finder | ||
- [ ] Variable finder | ||
- [ ] Drag and Drop | ||
- [ ] Download text | ||
- [ ] Format help | ||
|
||
## Decisions | ||
- [ ] GUI with Alpinejs | ||
- [ ] Tabs | ||
- [ ] Examples | ||
- [ ] IO | ||
- [ ] Eval expressions vs blocks | ||
|
||
## Decisions | ||
- [ ] New nomeclature like pyodide | ||
- [ ] New nomeclature like iodide | ||
- [ ] File names | ||
- [ ] Dropdown or tabs |
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.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
const mathWorker = new Worker("mathWorker.js"); | ||
const mathWorker = new Worker("mathWorker.js", {type: "classic"}); |
Oops, something went wrong.