Kaynağa Gözat

7.3.0 release

Gaudenz Alder 8 yıl önce
ebeveyn
işleme
e3e1fa2929

+ 7 - 0
ChangeLog

@@ -1,3 +1,10 @@
+28-AUG-2017: 7.3.0
+
+- Fixes event handling for page links in labels
+- Fixes label for page links on shapes
+- Fixes folding in tree containers
+- Uses mxGraph 3.7.5
+
 25-AUG-2017: 7.2.9
 
 - Moves clickable label links to tooltip in edit mode

+ 1 - 1
VERSION

@@ -1 +1 @@
-7.2.9
+7.3.0

+ 1 - 1
war/cache.manifest

@@ -1,7 +1,7 @@
 CACHE MANIFEST
 
 # THIS FILE WAS GENERATED. DO NOT MODIFY!
-# 08/25/2017 12:29 PM
+# 08/28/2017 11:58 AM
 
 app.html
 index.html?offline=1

Dosya farkı çok büyük olduğundan ihmal edildi
+ 556 - 555
war/js/app.min.js


Dosya farkı çok büyük olduğundan ihmal edildi
+ 7 - 7
war/js/atlas-viewer.min.js


Dosya farkı çok büyük olduğundan ihmal edildi
+ 603 - 602
war/js/atlas.min.js


+ 8 - 3
war/js/diagramly/EditorUi.js

@@ -6277,8 +6277,8 @@
 					}
 				}
 			}
-			
-			var a = graphCreateLinkForHint.apply(this, arguments);
+
+			var a = graphCreateLinkForHint.call(this, href, label);
 			
 			if (pageLink)
 			{
@@ -6300,7 +6300,12 @@
 			
 			if (graph.isPageLink(href))
 			{
-				pageLinkClicked(href);
+				// Active links are moved to the hint
+				if (!graph.isEnabled())
+				{
+					pageLinkClicked(href);
+				}
+				
 				mxEvent.consume(evt);
 			}
 			else

Dosya farkı çok büyük olduğundan ihmal edildi
+ 84 - 79
war/js/diagramly/Trees.js


Dosya farkı çok büyük olduğundan ihmal edildi
+ 7 - 7
war/js/embed-static.min.js


+ 1 - 1
war/js/mxgraph/Graph.js

@@ -6398,7 +6398,7 @@ if (typeof mxVertexHandler != 'undefined')
 			{
 				mxCellEditorApplyValue.apply(this, arguments);
 				
-				if (this.graph.isCellDeletable(state.cell))
+				if (this.graph.isCellDeletable(state.cell) && this.graph.model.getChildCount(state.cell) == 0)
 				{
 					var stroke = mxUtils.getValue(state.style, mxConstants.STYLE_STROKECOLOR, mxConstants.NONE);
 					var fill = mxUtils.getValue(state.style, mxConstants.STYLE_FILLCOLOR, mxConstants.NONE);

Dosya farkı çok büyük olduğundan ihmal edildi
+ 7 - 7
war/js/reader.min.js


Dosya farkı çok büyük olduğundan ihmal edildi
+ 7 - 7
war/js/viewer.min.js