CC-4823: Locale cookie doesn't get set after user logs in

-fixed
This commit is contained in:
denise 2013-01-10 10:37:30 -05:00
parent 8fdf7d9387
commit 1100baefbc

View file

@ -2,3 +2,9 @@ $(window).load(function(){
$("#username").focus();
$("#locale").val($.cookie("airtime_locale"));
});
$(document).ready(function() {
$("#submit").click(function() {
$.cookie("airtime_locale", $("#locale").val(), {path: '/'});
});
});