Skip to content

Commit

Permalink
Format strings are apparently the best way to do it
Browse files Browse the repository at this point in the history
  • Loading branch information
dgnuff committed Oct 7, 2023
1 parent eb410da commit aa717ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/travelwatch/custom.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
{
var $offset = document.createElement('tr')
var innerHTML = `
<td><input type="checkbox" id="enabled_' + i + '" ${offsets[i][0]? "checked" : ""}></td>
<td><input type="text" width="20%" id="name_' + i + '" value="${offsets[i][1]}"></td>
<td><input type="checkbox" id="enabled_{$i}" ${offsets[i][0]? "checked" : ""}></td>
<td><input type="text" width="20%" id="name_{$i}" value="${offsets[i][1]}"></td>
<td><select name="zone_${i}" id="zone_${i}">`
for (var j = 0; j < timeZones.length; j++)
{
Expand Down
2 changes: 1 addition & 1 deletion apps/travelwatch/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ "id": "travelwatch",

Check warning on line 1 in apps/travelwatch/metadata.json

View workflow job for this annotation

GitHub Actions / build

App travelwatch has no ChangeLog
"name": "Travel Watch",
"icon": "app.png",
"version":"1.10",
"version":"1.11",
"description": "Watch face that shows world wide time for travelers",
"tags": "clock",
"type": "clock",
Expand Down

0 comments on commit aa717ac

Please sign in to comment.