Skip to content

Commit

Permalink
Still working on table widths
Browse files Browse the repository at this point in the history
  • Loading branch information
dgnuff committed Oct 8, 2023
1 parent 17c85ad commit 0cc473c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions apps/travelwatch/custom.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

<table id="travelwatch-offsets">
<tr>
<th>Active</th>
<th style="width:20%">Active</th>
<th style="width:20%">Name</th>
<th>Time Zone</th>
<th style="width:60%">Time Zone</th>
</tr>
</table>

Expand Down Expand Up @@ -76,9 +76,9 @@
{
var $offset = document.createElement('tr')
var innerHTML = `
<td><input type="checkbox" id="enabled_${i}" ${offsets[i][0]? "checked" : ""}></td>
<td><input type="text" style="width:20%" id="name_${i}" value="${offsets[i][1]}"></td>
<td><select name="zone_${i}" id="zone_${i}">`
<td><input type="checkbox" style="width:100%" id="enabled_${i}" ${offsets[i][0]? "checked" : ""}></td>
<td><input type="text" style="width:100%" id="name_${i}" value="${offsets[i][1]}"></td>
<td><select name="zone_${i}" style="width:100%" id="zone_${i}">`
for (var j = 0; j < timeZones.length; j++)
{
innerHTML += '<option value="' + 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.13",
"version":"1.14",
"description": "Watch face that shows world wide time for travelers",
"tags": "clock",
"type": "clock",
Expand Down

0 comments on commit 0cc473c

Please sign in to comment.