mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-26 14:49:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1279 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
3fb2e6fba2
commit
ad2754314c
8 changed files with 101 additions and 46 deletions
|
|
@ -26,6 +26,7 @@ String.prototype.getQuery = function(key) {
|
|||
String.prototype.setQuery = function(key, val) {
|
||||
var idx = this.indexOf('?');
|
||||
var uri = this;
|
||||
uri = uri.replace(/#$/,'');
|
||||
if(idx != -1) {
|
||||
uri = this.substr(0, idx);
|
||||
var query_string = this.substr(idx+1, this.length);
|
||||
|
|
@ -499,8 +500,13 @@ function setMemberMenuObjCursor() {
|
|||
}
|
||||
|
||||
// 날자 선택 (달력 열기)
|
||||
function open_calendar(fo_id, day_str) {
|
||||
function open_calendar(fo_id, day_str, callback_func) {
|
||||
if(typeof(day_str)=="undefined") day_str = "";
|
||||
var url = "./common/tpl/calendar.php?fo_id="+fo_id+"&day_str="+day_str;
|
||||
|
||||
var url = "./common/tpl/calendar.php?";
|
||||
if(fo_id) url+="fo_id="+fo_id;
|
||||
if(day_str) url+="&day_str="+day_str;
|
||||
if(callback_func) url+="&callback_func="+callback_func;
|
||||
|
||||
popopen(url, 'Calendar');
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue