mirror of
https://github.com/grocy/grocy.git
synced 2025-08-17 19:16:37 +00:00
Make it possible to hide locations/stores/QUs/product_groups/task_categories (closes #2222)
This commit is contained in:
@@ -70,3 +70,20 @@ $(window).on("message", function(e)
|
||||
window.location.reload();
|
||||
}
|
||||
});
|
||||
|
||||
$("#show-disabled").change(function()
|
||||
{
|
||||
if (this.checked)
|
||||
{
|
||||
window.location.href = U('/productgroups?include_disabled');
|
||||
}
|
||||
else
|
||||
{
|
||||
window.location.href = U('/productgroups');
|
||||
}
|
||||
});
|
||||
|
||||
if (GetUriParam('include_disabled'))
|
||||
{
|
||||
$("#show-disabled").prop('checked', true);
|
||||
}
|
||||
|
Reference in New Issue
Block a user