blob: f1e7e8752addd414cd51e1198fff7ea5d63a3e62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<head>
<meta name="layout" content="basic" />
</head>
<g:hiddenField name="absPath" id="absPath" value="${absPath}"/>
<div style="height:100px;margin-left:auto; margin-right:auto;">
<h1 style="text-align:center;"><g:message code="heading.loading.for.link" /></h1>
</div>
<div style="clear:both;height:100px;">
<center><img src="${createLinkTo(dir: 'images', file: 'ajax-loader-bar.gif')}" alt="Loading..."/></center>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
baseAbsPath = $("#absPath").val();
if (baseAbsPath == null) {
return false;
}
baseAbsPath = escape(baseAbsPath);
window.location.href = context + "/home/index?mode=path&absPath=" + baseAbsPath;
});
</script>
|