XML2Console now CHK to simply check two xml side to side

This commit is contained in:
2020-01-05 09:54:38 +01:00
parent b5e77d3996
commit 8820b5700f
2 changed files with 18 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ class View:
def _view(self):
return h("div", {"on": { "click": msg(Reset()) }}, [
View.view_entry(self.model.entry, self.model),
# h("button.blk", {"on": { "click": lambda _: console.log(export_to_xml(self.model)) } }, "XML2Console"),
h("button.blk", {"on": { "click": lambda _: check_export(self.model) } }, "CHK"),
View.view_menu(self.model.menu_location, self.model.menu_target),
View.view_modal(self.model.modal_shown, self.model.modal)])