Skip to content
Snippets Groups Projects
Commit f583988b authored by Guillem Bartrina's avatar Guillem Bartrina
Browse files

rearrange tables within 'abstractions' dialog

parent c02a0dd1
No related branches found
No related tags found
4 merge requests!5752.15.0 release candidate,!574Draft: 2.15.0 release candidate,!560feature - private abstractions [ab],!483WIP: private patch abstractions [ab]. first approach
...@@ -6,12 +6,6 @@ ...@@ -6,12 +6,6 @@
<body class="dialog_body"> <body class="dialog_body">
<div class="container"> <div class="container">
<form> <form>
<fieldset style="width: 90%; border: 2px solid grey" disabled>
<legend data-i18n="abstractions.filebased"></legend>
<table style="width: 90%; table-layout: fixed;">
</table>
</fieldset>
<hr>
<fieldset style="width: 90%; border: 2px solid grey"> <fieldset style="width: 90%; border: 2px solid grey">
<legend data-i18n="abstractions.private"></legend> <legend data-i18n="abstractions.private"></legend>
<strong data-i18n="abstractions.global"></strong> <strong data-i18n="abstractions.global"></strong>
...@@ -34,6 +28,13 @@ ...@@ -34,6 +28,13 @@
</button> </button>
</div> </div>
<hr> <hr>
<fieldset style="width: 90%; border: 2px solid grey">
<legend data-i18n="abstractions.filebased"></legend>
<i>NOT IMPLEMENTED</i>
<table style="width: 90%; table-layout: fixed;">
</table>
</fieldset>
<hr>
<div class="submit_buttons"> <div class="submit_buttons">
<button type="button" onClick="cancel()" data-i18n="[title]abstractions.close_tt"> <button type="button" onClick="cancel()" data-i18n="[title]abstractions.close_tt">
<span data-i18n="abstractions.close"></span> <span data-i18n="abstractions.close"></span>
...@@ -82,9 +83,9 @@ function populate_form(attrs) { ...@@ -82,9 +83,9 @@ function populate_form(attrs) {
canvas = attrs.canvas; canvas = attrs.canvas;
deletequeue = new Set(); deletequeue = new Set();
var tables = document.querySelectorAll("table"), var tables = document.querySelectorAll("table"),
filebased_table = tables[0], filebased_table = tables[2],
privateglobal_table = tables[1], privateglobal_table = tables[0],
privatelocal_table = tables[2]; privatelocal_table = tables[1];
for(i = 0; i < filebased_abs.length; i += 2) for(i = 0; i < filebased_abs.length; i += 2)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment