2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-20 22:06:28 +00:00

use spaces instead of tabs

This commit is contained in:
2021-04-22 12:53:49 +02:00
parent 8d8ef22b8d
commit 294dd0525f
4 changed files with 18 additions and 18 deletions

View File

@ -19,18 +19,18 @@
{% block js_ready %}
{{ block.super }}
/* Hide Button Toolbar */
window.onload = function hideButtonToolbar() {
var toolbar = document.getElementById("button-toolbar");
toolbar.style.display = "none";
};
/* Hide Button Toolbar */
window.onload = function hideButtonToolbar() {
var toolbar = document.getElementById("button-toolbar");
toolbar.style.display = "none";
};
loadParametricPartTable(
"#parametric-part-table",
{
headers: {{ headers|safe }},
data: {{ parameters|safe }},
headers: {{ headers|safe }},
data: {{ parameters|safe }},
}
);