mirror of
https://github.com/overte-org/community-apps.git
synced 2025-08-12 21:40:48 +02:00
Add files via upload
This commit is contained in:
parent
0a5b271c76
commit
2ea974c89a
1 changed files with 20 additions and 4 deletions
|
@ -163,6 +163,17 @@
|
|||
text-transform: none;
|
||||
}
|
||||
|
||||
font.noresult {
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 18px;
|
||||
color: #aaaaaa;
|
||||
font-weight: 500;
|
||||
text-decoration: none;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
font.caption {
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
|
@ -292,7 +303,7 @@
|
|||
</table>
|
||||
</form><br>
|
||||
<div id = "data"></div>
|
||||
<div style="width:100%; text-align:right;"><div style = "vertical-align: middle;" id = 'pager_footer'></div>
|
||||
<div style="width:98%; text-align:right;"><div style = "vertical-align: middle;" id = 'pager_footer'></div>
|
||||
|
||||
<script>
|
||||
|
||||
|
@ -372,9 +383,14 @@
|
|||
var countB = offset + counterDisp;
|
||||
|
||||
var pagerHtml = pagerPrevious + "<font class='pager'> " + countA + " - " + countB + " </font>" + pagerNext;
|
||||
document.getElementById("pager_top").innerHTML = pagerHtml;
|
||||
document.getElementById("data").innerHTML = pageContent;
|
||||
document.getElementById("pager_footer").innerHTML = pagerHtml;
|
||||
|
||||
if (counterDisp > 0 ){
|
||||
document.getElementById("pager_top").innerHTML = pagerHtml;
|
||||
document.getElementById("data").innerHTML = pageContent;
|
||||
document.getElementById("pager_footer").innerHTML = pagerHtml;
|
||||
}else{
|
||||
document.getElementById("data").innerHTML = "<hr><div align='center'><font class='noresult'><br><br><br><br>Sorry, no result found.<br><br><br><br><br><br></font></div><hr>";
|
||||
}
|
||||
|
||||
requestRunningScriptData();
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue