버그 수정, 턴 입력 form 준비

This commit is contained in:
2019-06-16 21:07:08 +09:00
parent 5d42730e9a
commit 3ebb30795c
10 changed files with 2595 additions and 2477 deletions
+13
View File
@@ -0,0 +1,13 @@
$(function(){
var $target = $("#destCityID");
reloadWorldMap({
isDetailMap:false,
clickableAll:true,
neutralView:true,
useCachedMap:true,
selectCallback:function(city){
$target.val(city.id);
return false;
}
});
});