Skip to content

Commit

Permalink
"todo" becomes "to do" for sake of auto-translation (ms edge feature)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkenidar committed Jun 9, 2023
1 parent 5c34f8b commit fa9fc47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion list-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function list_setup(list_content, main_node){
html += /*html*/`<button onclick="list_visually_filter('all',this.parentNode.parentNode)" class="view-all">all</button>`
// filter:todo is showing unchecked items
// filtro per mostrare solo i task non spuntati, non completati
html += /*html*/`<button onclick="list_visually_filter('todo',this.parentNode.parentNode)" class="view-todo">todo</button>`
html += /*html*/`<button onclick="list_visually_filter('todo',this.parentNode.parentNode)" class="view-todo">to do</button>`
// filter:done is showing checked items
// filtro per mostrare solo i task completati ovvero spuntati
html += /*html*/`<button onclick="list_visually_filter('done',this.parentNode.parentNode)" class="view-done">done</button>`
Expand Down

0 comments on commit fa9fc47

Please sign in to comment.