diff --git a/wise-webapp/src/main/webapp/jsp/mindmapViewonly.jsp b/wise-webapp/src/main/webapp/jsp/mindmapViewonly.jsp index 34217c90..3e6cbe8b 100644 --- a/wise-webapp/src/main/webapp/jsp/mindmapViewonly.jsp +++ b/wise-webapp/src/main/webapp/jsp/mindmapViewonly.jsp @@ -7,6 +7,7 @@ + ${mindmap.title} | <spring:message code="SITE.TITLE"/> @@ -33,63 +34,79 @@ + + +
+
+
+ + + + + + +
+ :${mindmap.creator.fullName} + :${mindmap.title} +
+ + + +
+
+ + +
+ +
+
+
+
-
-
+ - -
-
- - -
- -
-
-
- - + const zoomOutButton = document.getElementById('zoom-minus'); + if (zoomOutButton) { + zoomOutButton.addEventListener('click', () => { + designer.zoomOut(); + }); + } + + const position = document.getElementById('position'); + if (position) { + position.addEventListener('click', () => { + designer.zoomToFit(); + }); + } +