Skip to content
Snippets Groups Projects
Commit c41e6d70 authored by JediKev's avatar JediKev
Browse files

issue: Inherit Columns & Use Standard Columns

This addresses an issue where unchecking the box for 'Inherit columns from
the parent queue' does not hide the columns from the parent queue. Instead
it pushes them below the new, editable columns. This adds jQuery to toggle
the visibility of the parent columns.
parent d38b3479
Branches
Tags
No related merge requests found
......@@ -106,6 +106,9 @@ $hidden_cols = $queue->inheritColumns() || $queue->useStandardColumns();
</div>
<script>
+function() {
$('[name=inherit-columns]').on('click', function() {
$('.standard-columns').toggle();
});
var Q = setInterval(function() {
if ($('#append-column').length == 0)
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment