diff options
Diffstat (limited to 'main.js')
-rw-r--r-- | main.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3981,7 +3981,9 @@ const infoMetadataAccordions = []; btn_group.setAttribute('role', 'group'); body.appendChild(btn_group); - Object.values(buttons).forEach((btn) => btn_group.appendChild(btn)); + btn_group.appendChild(buttons.cancel); + btn_group.appendChild(buttons.undo); + btn_group.appendChild(buttons.ok); })(); document.getElementById('measure-button') @@ -3996,7 +3998,6 @@ const infoMetadataAccordions = []; }); })(); - /* popup and feature overlays */ const disposePopover = (function() { /* return an <a> tag with the given URL and optional text */ |