Avoid hiding column only to show it later

This commit is contained in:
Jakub Vrana 2018-02-09 17:48:38 +01:00
parent 07d1bc4291
commit 557b8b178e
2 changed files with 1 additions and 2 deletions

View file

@ -187,7 +187,7 @@ edit_fields($row["fields"], $collations, "TABLE", $foreign_keys, $comments);
<p>
<?php echo lang('Auto Increment'); ?>: <input type="number" name="Auto_increment" size="6" value="<?php echo h($row["Auto_increment"]); ?>">
<?php echo checkbox("defaults", 1, !$_POST || $_POST["defaults"], lang('Default values'), "columnShow(this.checked, 5)", "jsonly"); ?>
<?php if (!$_POST) { echo script("editingHideDefaults();"); } ?>
<?php echo ($_POST ? "" : script("editingHideDefaults();")); ?>
<?php echo (support("comment")
? "<label><input type='checkbox' name='comments' value='1' class='jsonly'" . ($comments ? " checked" : "") . ">" . lang('Comment') . "</label>"
. script("qsl('input').onclick = partial(editingCommentsClick, true);")

View file

@ -385,7 +385,6 @@ function columnShow(checked, column) {
function editingHideDefaults() {
if (innerWidth < document.documentElement.scrollWidth) {
qs('#form')['defaults'].checked = false;
columnShow(false, 5);
}
}