Browse Source

13.5.3 release

Gaudenz Alder 5 years ago
parent
commit
a579fe9c09

+ 4 - 1
ChangeLog

@@ -1,6 +1,9 @@
+24-JUL-2020: 13.5.3
+
+- Fixes print in static viewer
+
 24-JUL-2020: 13.5.2
 
-- Fixes auth for OneDrive viewer
 - Fixes viewer links
 - Uses mxGraph 4.2.1 beta 8
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-13.5.2
+13.5.3

File diff suppressed because it is too large
+ 4 - 4
src/main/webapp/js/app.min.js


+ 1 - 1
src/main/webapp/js/diagramly/Editor.js

@@ -6848,7 +6848,7 @@
 			var ignorePages = !allPagesRadio.checked;
 			var pv = null;
 			
-			if (mxIsElectron)
+			if (typeof mxIsElectron !== 'undefined' && mxIsElectron)
 			{
 				PrintDialog.electronPrint(editorUi, allPagesRadio.checked, pagesFrom, pagesTo, 
 						fitRadio.checked, sheetsAcrossInput.value, sheetsDownInput.value, parseInt(zoomInput.value) / 100, parseInt(pageScaleInput.value) / 100, accessor.get());

File diff suppressed because it is too large
+ 3 - 3
src/main/webapp/js/viewer-static.min.js


File diff suppressed because it is too large
+ 3 - 3
src/main/webapp/js/viewer.min.js