diff options
Diffstat (limited to 'html/options.html')
-rw-r--r-- | html/options.html | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/html/options.html b/html/options.html index 2246f9a..81ab002 100644 --- a/html/options.html +++ b/html/options.html @@ -78,27 +78,26 @@ </style> </head> <body> - <!-- The invisible div below is for elements that will be cloned. --> - <div class="hide"> - <li id="item_li_template"> + <template> + <li id="item_li"> <span></span> <button> Edit </button> <button> Remove </button> <button> Export </button> </li> - <li id="bag_component_li_template"> + <li id="bag_component_li"> <span></span> <button> Remove </button> </li> - <li id="chbx_component_li_template"> + <li id="chbx_component_li"> <input type="checkbox" style="display: inline;"></input> <span></span> </li> - <li id="radio_component_li_template"> + <li id="radio_component_li"> <input type="radio" style="display: inline;" name="page_components"></input> <span></span> </li> - </div> + </template> <!-- Mind the show_*s ids below - their format is assumed in js code --> <input type="radio" name="tabs" id="show_repos"></input> |