Skip to content

Commit

Permalink
13.8.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed Oct 24, 2020
1 parent 0a442de commit 78adcae
Show file tree
Hide file tree
Showing 71 changed files with 2,609 additions and 2,526 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
24-OCT-2020: 13.8.2

- Lucidchart import improvements
- Fixes ungrouping action
- Uses mxGraph 4.2.1 beta 22

20-OCT-2020: 13.8.1

- Lucidchart import improvements
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
13.8.1
13.8.2
4 changes: 2 additions & 2 deletions etc/mxgraph/mxClient.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 15 additions & 1 deletion src/main/webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,16 @@
// ignored
}

var mxScriptsLoaded = false, mxWinLoaded = false;

function checkAllLoaded()
{
if (mxScriptsLoaded && mxWinLoaded)
{
App.main();
}
};

var t0 = new Date();

// Changes paths for local development environment
Expand Down Expand Up @@ -290,6 +300,9 @@
{
mxscript('js/app.min.js', function()
{
mxScriptsLoaded = true;
checkAllLoaded();

if (!supportedDomain)
{
mxscript('js/PostConfig.js');
Expand Down Expand Up @@ -452,7 +465,8 @@ <h2 id="geStatus">Loading...</h2>
{
window.addEventListener('load', function()
{
App.main();
mxWinLoaded = true;
checkAllLoaded();
});
}
else
Expand Down
Loading

0 comments on commit 78adcae

Please sign in to comment.