Skip to content

Commit

Permalink
7.7.0 release
Browse files Browse the repository at this point in the history
Former-commit-id: add1326
  • Loading branch information
alderg committed Nov 15, 2017
1 parent 5268680 commit 9174e8d
Show file tree
Hide file tree
Showing 10 changed files with 760 additions and 750 deletions.
6 changes: 5 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
15-NOV-2017: 7.7.0

- Fixes alt+mousewheel in lightbox mode

15-NOV-2017: 7.6.9

- Adds predefined filters for Trello picker
Expand Down Expand Up @@ -32,7 +36,7 @@

26-OCT-2017: 7.6.3

- Adds current style to CSV and text
- Adds current style to CSV and text
- Uses mxGraph 3.7.6 beta 7

25-OCT-2017: 7.6.2
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.6.9
7.7.0
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!
# 11/15/2017 05:18 PM
# 11/15/2017 08:07 PM

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

Large diffs are not rendered by default.

476 changes: 238 additions & 238 deletions war/js/atlas-viewer.min.js

Large diffs are not rendered by default.

266 changes: 133 additions & 133 deletions war/js/atlas.min.js

Large diffs are not rendered by default.

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.

12 changes: 9 additions & 3 deletions war/js/mxgraph/EditorUi.js
Original file line number Diff line number Diff line change
Expand Up @@ -1342,6 +1342,7 @@ EditorUi.prototype.initCanvas = function()

// Scales pages/graph to fit available size
var resize = null;
var ui = this;

if (this.editor.chromeless)
{
Expand Down Expand Up @@ -1403,10 +1404,16 @@ EditorUi.prototype.initCanvas = function()
// Hack to make function available to subclassers
this.chromelessResize = resize;

// Hook for subclassers for override
this.chromelessWindowResize = mxUtils.bind(this, function()
{
this.chromelessResize(false);
});

// Removable resize listener
var autoscaleResize = mxUtils.bind(this, function()
{
this.chromelessResize(false);
this.chromelessWindowResize(false);
});

mxEvent.addListener(window, 'resize', autoscaleResize);
Expand Down Expand Up @@ -1776,7 +1783,6 @@ EditorUi.prototype.initCanvas = function()

// Shows/hides toolbar for touch devices
var tol = graph.getTolerance();
var ui = this;

graph.addMouseListener(
{
Expand Down Expand Up @@ -1967,7 +1973,7 @@ EditorUi.prototype.initCanvas = function()
{
if (resize != null)
{
this.chromelessResize(false, null, dx * (this.cumulativeZoomFactor - 1),
ui.chromelessResize(false, null, dx * (this.cumulativeZoomFactor - 1),
dy * (this.cumulativeZoomFactor - 1));
}

Expand Down
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 9174e8d

Please sign in to comment.