34 lines
635 B
JavaScript
34 lines
635 B
JavaScript
|
|
/*
|
|
function showCityGeneral(cityIdx){
|
|
|
|
}
|
|
*/
|
|
/*
|
|
function loadScenarioPreview(scenarioIdx){
|
|
$(function(){
|
|
reloadWorldMap({
|
|
clickableAll:true,
|
|
selectCallback:showCityGeneral,
|
|
hrefTemplate:'#',
|
|
neutralView:true,
|
|
showMe:false,
|
|
targetJson:'j_get_scenario_map.php?scenarioIdx={0}'.format(scenarioIdx)
|
|
});
|
|
});
|
|
}
|
|
*/
|
|
|
|
function loadScenarios(){
|
|
$.ajax({
|
|
method:'post',
|
|
url:'j_load_scenarios.php',
|
|
dataType:'json'
|
|
}).then(function(result){
|
|
|
|
});
|
|
}
|
|
$(function(){
|
|
loadScenarios();
|
|
//loadScenarioPreview(8);
|
|
}) |