mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 21:29:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1847 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ab374b12f2
commit
cb3246888e
29 changed files with 635 additions and 22 deletions
|
|
@ -535,3 +535,15 @@ function open_calendar(fo_id, day_str, callback_func) {
|
|||
|
||||
popopen(url, 'Calendar');
|
||||
}
|
||||
|
||||
// 언어코드 (lang_type) 쿠키값 변경
|
||||
function doChangeLangType(obj) {
|
||||
var val = obj.options[obj.selectedIndex].value;
|
||||
setLangType(val);
|
||||
location.href = location.href;
|
||||
}
|
||||
function setLangType(lang_type) {
|
||||
var expire = new Date();
|
||||
expire.setTime(expire.getTime()+ (7000 * 24 * 3600000));
|
||||
xSetCookie('lang_type', lang_type, expire);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue