mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 22:27:55 +01:00
More wrong paths fixed...
This commit is contained in:
parent
4770601190
commit
d3447d1142
@ -31,19 +31,19 @@
|
|||||||
<c:when test="${principal != null}">
|
<c:when test="${principal != null}">
|
||||||
<div id="headerActions">
|
<div id="headerActions">
|
||||||
<spring:message code="WELCOME"/>, ${principal.firstname}
|
<spring:message code="WELCOME"/>, ${principal.firstname}
|
||||||
| <span><a href="/c/maps/"><spring:message
|
| <span><a href="c/maps/"><spring:message
|
||||||
code="MY_WISEMAPS"/></a></span>
|
code="MY_WISEMAPS"/></a></span>
|
||||||
| <span><a id="userSettingsBtn" href="#"
|
| <span><a id="userSettingsBtn" href="#"
|
||||||
title="<spring:message code="ACCOUNT_DETAIL"/>"><spring:message
|
title="<spring:message code="ACCOUNT_DETAIL"/>"><spring:message
|
||||||
code="ACCOUNT"/></a></span>
|
code="ACCOUNT"/></a></span>
|
||||||
| <span><a href="/c/logout"
|
| <span><a href="c/logout"
|
||||||
title="<spring:message code="LOGOUT"/>"><spring:message code="LOGOUT"/></a></span>
|
title="<spring:message code="LOGOUT"/>"><spring:message code="LOGOUT"/></a></span>
|
||||||
</div>
|
</div>
|
||||||
</c:when>
|
</c:when>
|
||||||
<c:when test="${param.removeSignin!=true}">
|
<c:when test="${param.removeSignin!=true}">
|
||||||
<div id="headerActions">
|
<div id="headerActions">
|
||||||
<spring:message code="ALREADY_A_MEMBER"/>
|
<spring:message code="ALREADY_A_MEMBER"/>
|
||||||
<span><a href="/c/login" title="<spring:message code="SIGN_IN"/>">
|
<span><a href="c/login" title="<spring:message code="SIGN_IN"/>">
|
||||||
<spring:message code="SIGN_IN"/>
|
<spring:message code="SIGN_IN"/>
|
||||||
</a></span>
|
</a></span>
|
||||||
</div>
|
</div>
|
||||||
@ -53,7 +53,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<c:if test="${param.onlyActionHeader!=true}">
|
<c:if test="${param.onlyActionHeader!=true}">
|
||||||
<div id="headerContent">
|
<div id="headerContent">
|
||||||
<a href="/c/home" title="Homepage">
|
<a href="c/home" title="Homepage">
|
||||||
<div id="headerLogo"> </div>
|
<div id="headerLogo"> </div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
@ -67,7 +67,7 @@
|
|||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$('#userSettingsBtn').click(
|
$('#userSettingsBtn').click(
|
||||||
function (event) {
|
function (event) {
|
||||||
$('#settings-dialog-modal .modal-body').load("/c/account/settings",
|
$('#settings-dialog-modal .modal-body').load("c/account/settings",
|
||||||
function () {
|
function () {
|
||||||
$('#settings-dialog-modal .btn-cancel').unbind('click').click(function () {
|
$('#settings-dialog-modal .btn-cancel').unbind('click').click(function () {
|
||||||
$('#settings-dialog-modal').modal("hide");
|
$('#settings-dialog-modal').modal("hide");
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<div id="mindplot" onselectstart="return false;"></div>
|
<div id="mindplot" onselectstart="return false;"></div>
|
||||||
|
|
||||||
<div id="embFooter">
|
<div id="embFooter">
|
||||||
<a href="/c/home" target="new">
|
<a href="c/home" target="new">
|
||||||
<div id="footerLogo"></div>
|
<div id="footerLogo"></div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@
|
|||||||
|
|
||||||
tableElem.find('tr a.view').each(function () {
|
tableElem.find('tr a.view').each(function () {
|
||||||
$(this).click(function (event) {
|
$(this).click(function (event) {
|
||||||
window.open("/c/maps/${mindmapId}/" + $(this).closest("tr").attr("data-history-id") + "/view");
|
window.open("c/maps/${mindmapId}/" + $(this).closest("tr").attr("data-history-id") + "/view");
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
var fileContent = null;
|
var fileContent = null;
|
||||||
|
|
||||||
$('#cancelButton').click(function () {
|
$('#cancelButton').click(function () {
|
||||||
window.location = '/c/maps/';
|
window.location = 'c/maps/';
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#dialogMainForm').submit(function (event) {
|
$('#dialogMainForm').submit(function (event) {
|
||||||
|
@ -111,7 +111,7 @@
|
|||||||
<div id="printLogo"></div>
|
<div id="printLogo"></div>
|
||||||
|
|
||||||
<div id="embFooter">
|
<div id="embFooter">
|
||||||
<a href="/c/home" target="new">
|
<a href="c/home" target="new">
|
||||||
<div id="footerLogo"></div>
|
<div id="footerLogo"></div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user