Updated jquery.cookie to js.cookie

This commit is contained in:
Codenift 2019-09-18 10:04:43 -04:00
parent 24dd71ad33
commit fc2c23be8a
5 changed files with 193 additions and 102 deletions

View file

@ -4,6 +4,6 @@ $(window).load(function() {
$(document).ready(function() {
$("#submit").click(function() {
$.cookie("airtime_locale", $("#locale").val(), {path: '/'});
Cookies.set('airtime_locale', $('#locale').val(), {path: '/'});
});
});