mirror of
https://github.com/grocy/grocy.git
synced 2025-08-15 02:04:38 +00:00
Make it possible to hide locations/stores/QUs/product_groups/task_categories (closes #2222)
This commit is contained in:
@@ -61,3 +61,20 @@ $(document).on('click', '.task-category-delete-button', function(e)
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
$("#show-disabled").change(function()
|
||||
{
|
||||
if (this.checked)
|
||||
{
|
||||
window.location.href = U('/taskcategories?include_disabled');
|
||||
}
|
||||
else
|
||||
{
|
||||
window.location.href = U('/taskcategories');
|
||||
}
|
||||
});
|
||||
|
||||
if (GetUriParam('include_disabled'))
|
||||
{
|
||||
$("#show-disabled").prop('checked', true);
|
||||
}
|
||||
|
Reference in New Issue
Block a user