mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 15:15:22 +00:00
instances_filter cookie expires after 1 day
This commit is contained in:
parent
9327cf36c4
commit
572f7b12cd
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@
|
|||
$('.searchable tr').filter(function () {
|
||||
return rex.test($(this).text());
|
||||
}).show();
|
||||
Cookies.set("instances_filter", $(this).val());
|
||||
Cookies.set("instances_filter", $(this).val(), { expires: 1 });
|
||||
}
|
||||
$(document).ready(function () {
|
||||
instances_filter_cookie = Cookies.get("instances_filter");
|
||||
|
|
Loading…
Reference in a new issue