mirror of
https://github.com/grocy/grocy.git
synced 2025-08-17 03:04:36 +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', '.quantityunit-delete-button', function(e)
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
$("#show-disabled").change(function()
|
||||
{
|
||||
if (this.checked)
|
||||
{
|
||||
window.location.href = U('/quantityunits?include_disabled');
|
||||
}
|
||||
else
|
||||
{
|
||||
window.location.href = U('/quantityunits');
|
||||
}
|
||||
});
|
||||
|
||||
if (GetUriParam('include_disabled'))
|
||||
{
|
||||
$("#show-disabled").prop('checked', true);
|
||||
}
|
||||
|
Reference in New Issue
Block a user