mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
Add account information render
This commit is contained in:
parent
965c65e793
commit
761b2e5ee0
@ -25,12 +25,11 @@ div#mapName >span {
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#back {
|
div#backToList {
|
||||||
background: url(../../images/editor/back-icon.svg) no-repeat center center;
|
height: 24px;
|
||||||
height: 40px;
|
width: 24px;
|
||||||
width: 80px;
|
|
||||||
float: left;
|
float: left;
|
||||||
margin: 6px 0px;
|
margin: 13px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************************************************/
|
/******************************************************************************************/
|
||||||
|
@ -30,6 +30,8 @@
|
|||||||
var mindmapLockedMsg = '<spring:message code="MINDMAP_LOCKED" arguments="${lockInfo.user.fullName},${lockInfo.user.email}"/>';
|
var mindmapLockedMsg = '<spring:message code="MINDMAP_LOCKED" arguments="${lockInfo.user.fullName},${lockInfo.user.email}"/>';
|
||||||
var userOptions = ${mindmap.properties};
|
var userOptions = ${mindmap.properties};
|
||||||
var isAuth = ${principal != null};
|
var isAuth = ${principal != null};
|
||||||
|
var accountName = '${principal.fullName}';
|
||||||
|
var accountEmail = '${principal.email}';
|
||||||
</script>
|
</script>
|
||||||
<%@ include file="/jsp/googleAnalytics.jsf" %>
|
<%@ include file="/jsp/googleAnalytics.jsf" %>
|
||||||
</head>
|
</head>
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
<%--@elvariable id="mindmap" type="com.wisemapping.model.Mindmap"--%>
|
<%--@elvariable id="mindmap" type="com.wisemapping.model.Mindmap"--%>
|
||||||
|
|
||||||
<div id="toolbar">
|
<div id="toolbar">
|
||||||
<a href="/c/maps/"><div id="back"></div></a>
|
<div id="backToList">
|
||||||
<div id="editTab" class="tabContent">
|
<img src="../../images/editor/back-icon.svg" />
|
||||||
|
</div> <div id="editTab" class="tabContent">
|
||||||
<div id="persist" class="buttonContainer">
|
<div id="persist" class="buttonContainer">
|
||||||
<c:if test="${!readOnlyMode}">
|
<c:if test="${!readOnlyMode}">
|
||||||
<div id="save" class="buttonOn">
|
<div id="save" class="buttonOn">
|
||||||
@ -70,13 +71,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="separator" class="buttonContainer"></div>
|
<div id="separator" class="buttonContainer"></div>
|
||||||
|
|
||||||
</c:if>
|
</c:if>
|
||||||
</div>
|
</div>
|
||||||
<div id="toolbarRight">
|
<div id="toolbarRight">
|
||||||
<div id="account">
|
|
||||||
<img src="../../images/editor/account.svg"/>
|
|
||||||
</div>
|
|
||||||
<div id="share" class="actionButton">Share</div>
|
<div id="share" class="actionButton">Share</div>
|
||||||
<div id="export" class="buttonOn">
|
<div id="export" class="buttonOn">
|
||||||
<img src="../../images/editor/export.svg" />
|
<img src="../../images/editor/export.svg" />
|
||||||
@ -87,5 +84,7 @@
|
|||||||
<div id="history" class="buttonOn">
|
<div id="history" class="buttonOn">
|
||||||
<img src="../../images/editor/history.svg" />
|
<img src="../../images/editor/history.svg" />
|
||||||
</div>
|
</div>
|
||||||
|
<div id="account">
|
||||||
|
<img src="../../images/editor/account.svg"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
Loading…
Reference in New Issue
Block a user