mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 23:25:24 +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 () {
|
$('.searchable tr').filter(function () {
|
||||||
return rex.test($(this).text());
|
return rex.test($(this).text());
|
||||||
}).show();
|
}).show();
|
||||||
Cookies.set("instances_filter", $(this).val());
|
Cookies.set("instances_filter", $(this).val(), { expires: 1 });
|
||||||
}
|
}
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
instances_filter_cookie = Cookies.get("instances_filter");
|
instances_filter_cookie = Cookies.get("instances_filter");
|
||||||
|
|
Loading…
Reference in a new issue