-
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.
Rest client binding, diagram refresh, settings, loader add, etc
- Loading branch information
1 parent
e32a35d
commit 2c2a873
Showing
13 changed files
with
3,951 additions
and
132 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
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
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,13 +1,17 @@ | ||
import { update } from "./graph"; | ||
import * as graph from "./graph"; | ||
import * as tabular from "./tabular"; | ||
import * as details from "./details"; | ||
import * as settings from "./settings"; | ||
import * as source from "./source"; | ||
import * as model from "./model"; | ||
|
||
window.init = () => { | ||
|
||
update(); | ||
tabular.init(); | ||
details.init(); | ||
settings.init(); | ||
source.init(); | ||
graph.init(); | ||
model.update(() => graph.update()); | ||
|
||
}; |
Oops, something went wrong.