mirror of https://github.com/espruino/BangleApps
> 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_quickfixpull/1472/head
parent
b7e7e7819c
commit
8ddbc90c33
2
core
2
core
|
@ -1 +1 @@
|
|||
Subproject commit bf29f5697445686255a785476e6b1ed6a13ff697
|
||||
Subproject commit a7a80a13fa187a4ff5f89669992babca2d95812c
|
|
@ -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>`;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue