mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-06 01:02:34 +02:00
Lint.
Co-Authored-By: Keb Helion <60008426+KebHelion@users.noreply.github.com>
This commit is contained in:
parent
060ed582dc
commit
ebf99f7c48
1 changed files with 3 additions and 3 deletions
|
@ -165,7 +165,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form><!--br-->
|
||||
</form>
|
||||
<div id = "data"></div>
|
||||
<div style="width:98%; text-align:right;">
|
||||
<div style = "vertical-align: middle;" id = 'pager_footer'></div>
|
||||
|
@ -188,7 +188,7 @@
|
|||
document.searchbar.searchtextbox.value = search;
|
||||
var pageContent = "";
|
||||
|
||||
function DisplayApp(item) {
|
||||
function displayApp(item) {
|
||||
pageContent = pageContent + "<a name = '" + window.btoa(item.directory) + "'><table class='item'><tr>";
|
||||
pageContent = pageContent + "<td><div class='iconContainer'><img src='" + rootPath + item.icon + "' style='width:50px;'><br><font class = 'caption'>" + item.caption + "</font></div></td>";
|
||||
var btn = "";
|
||||
|
@ -219,7 +219,7 @@
|
|||
if (lowItem.indexOf(searchKeyword.toLowerCase()) !== -1 && metadata.applications[index].isActive == true) {
|
||||
counterDir = counterDir + 1;
|
||||
if ((counterDir >= listOffset) && (counterDir < (listOffset + listPerPage))) {
|
||||
DisplayApp(metadata.applications[index]);
|
||||
displayApp(metadata.applications[index]);
|
||||
counterDisp = counterDisp + 1;
|
||||
}
|
||||
if (counterDir >= (listOffset + listPerPage)) {
|
||||
|
|
Loading…
Reference in a new issue