Skip to content

Commit

Permalink
7.4.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed Sep 19, 2017
1 parent bdc0316 commit ba68d7c
Show file tree
Hide file tree
Showing 11 changed files with 344 additions and 317 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
19-SEP-2017: 7.4.3

- Improvements for Trello integration

19-SEP-2017: 7.4.2

- Hard codes Dropbox SDK version to work around their bug

18-SEP-2017: 7.4.1

- Hides footer in embed mode
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.4.1
7.4.3
2 changes: 1 addition & 1 deletion war/cache.manifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CACHE MANIFEST

# THIS FILE WAS GENERATED. DO NOT MODIFY!
# 09/18/2017 08:45 PM
# 09/19/2017 01:34 PM

app.html
index.html?offline=1
Expand Down
158 changes: 79 additions & 79 deletions war/js/app.min.js

Large diffs are not rendered by default.

142 changes: 71 additions & 71 deletions war/js/atlas-viewer.min.js

Large diffs are not rendered by default.

158 changes: 79 additions & 79 deletions war/js/atlas.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions war/js/diagramly/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ App.MODE_TRELLO = 'trello';
App.DROPBOX_APPKEY = 'libwls2fa9szdji';

/**
* Sets the delay for autosave in milliseconds. Default is 2000.
* Sets URL to load the Dropbox SDK from
*/
App.DROPBOX_URL = 'https://unpkg.com/dropbox/dist/Dropbox-sdk.min.js';
App.DROPBOX_URL = 'https://unpkg.com/dropbox@2.5.7/dist/Dropbox-sdk.min.js';

/**
* Sets the delay for autosave in milliseconds. Default is 2000.
Expand Down
41 changes: 30 additions & 11 deletions war/js/diagramly/EditorUi.js
Original file line number Diff line number Diff line change
Expand Up @@ -2821,18 +2821,26 @@
*/
EditorUi.prototype.addChromelessToolbarItems = function(addButton)
{
editoUiAddChromelessToolbarItems.apply(this, arguments);

if (this.isExportToCanvas())
{
this.exportDialog = null;

var exportButton = addButton(mxUtils.bind(this, function(evt)
{
var clickHandler = mxUtils.bind(this, function()
{
mxEvent.removeListener(this.editor.graph.container, 'click', clickHandler);

if (this.exportDialog != null)
{
this.exportDialog.parentNode.removeChild(this.exportDialog);
this.exportDialog = null;
}
});

if (this.exportDialog != null)
{
this.exportDialog.parentNode.removeChild(this.exportDialog);
this.exportDialog = null;
clickHandler.apply(this);
}
else
{
Expand Down Expand Up @@ -2873,13 +2881,6 @@
});
spinner.spin(this.exportDialog);

var clickHandler = mxUtils.bind(this, function()
{
mxEvent.removeListener(this.editor.graph.container, 'click', clickHandler);
this.exportDialog.parentNode.removeChild(this.exportDialog);
this.exportDialog = null;
});

this.exportToCanvas(mxUtils.bind(this, function(canvas)
{
spinner.stop();
Expand Down Expand Up @@ -2919,6 +2920,8 @@
mxEvent.consume(evt);
}), Editor.cameraLargeImage, mxResources.get('export'));
}

editoUiAddChromelessToolbarItems.apply(this, arguments);
};


Expand Down Expand Up @@ -8523,6 +8526,22 @@

return;
}
else if (data.action == 'loadFile' && this.loadFile)
{
if (data.type == 'T')
{
if (this.trello == null)
{
this.addListener('clientLoaded', function() {
this.loadFile(data.file, true);
});
}
else
{
this.loadFile(data.file, true);
}
}
}
else if (data.action == 'load')
{
autosave = data.autosave == 1;
Expand Down
2 changes: 1 addition & 1 deletion war/js/embed-static.min.js

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

2 changes: 1 addition & 1 deletion war/js/reader.min.js

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

Loading

0 comments on commit ba68d7c

Please sign in to comment.