changeset 8e040db8b68b in sao:default
details: https://hg.tryton.org/sao?cmd=changeset&node=8e040db8b68b
description:
Add wizard to main element of tab and remove top padding
issue10764
review369711002
diffstat:
src/tab.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 6fa1d70fa8f2 -r 8e040db8b68b src/tab.js
--- a/src/tab.js Sun Sep 19 00:28:04 2021 +0200
+++ b/src/tab.js Mon Sep 20 10:28:22 2021 +0200
@@ -1652,7 +1652,7 @@
this.title.text(this.name_el.text());
this.content.remove();
this.content = wizard.form;
- this.el.append(wizard.form);
+ this.main.css('padding-top', 0).append(wizard.form);
},
create_toolbar: function() {
return jQuery('<span/>');