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