> specificlly check for Jekyll markup

> Add ability to scan the server for metadata.json files if no apps.json is present
  > Tidying up search box/chip handling to avoid global vars - just work out what to filter from window location each time
  > Under device info, show installed apps
  > Allow left-click and copy link for links
  > Merge pull request #18 from myxor/chips_quickfix
pull/1472/head
Gordon Williams 2022-02-17 13:39:35 +00:00
parent b7e7e7819c
commit 8ddbc90c33
2 changed files with 1 additions and 2 deletions

2
core

@ -1 +1 @@
Subproject commit bf29f5697445686255a785476e6b1ed6a13ff697
Subproject commit a7a80a13fa187a4ff5f89669992babca2d95812c

View File

@ -202,7 +202,6 @@ window.addEventListener('load', (event) => {
}
var selectLang = document.getElementById("settings-lang");
console.log(languages);
languages.forEach(lang => {
selectLang.innerHTML += `<option value="${lang.code}" ${SETTINGS.language==lang.code?"selected":""}>${lang.name} (${lang.code})</option>`;
});