切换为全部数字列表
This commit is contained in:
parent
1e05da7fbe
commit
6bed4b8821
|
@ -32,12 +32,12 @@ method.filelist = {
|
|||
$('<div/>', {
|
||||
'style':'overflow:auto;',
|
||||
'id': 'div_'+id,
|
||||
"html": '<li><img src="/images/ajax-load-small.gif" />加载中</li>'
|
||||
"html": '<li><i class="icon-spinner icon-spin icon-large"></i>加载中</li>'
|
||||
}).appendTo('#li_'+id);
|
||||
url="/service/subfilelist/uuid/"+uuid+"/subpath/"+id+"/depth/"+depth;
|
||||
$.getJSON(url, function(data) {
|
||||
items = method.filelist.makelist(data);
|
||||
$("#div_"+id).html(items.join(''));
|
||||
$("#div_"+id).html('<ol>'+items.join('')+'</ol>');
|
||||
}).complete(function(){
|
||||
if($("#div_"+id)){
|
||||
$('#span_'+id).html('-');
|
||||
|
@ -281,6 +281,7 @@ function setRectangle(east,west,south,north){
|
|||
|
||||
rectangle.setMap(map);
|
||||
|
||||
|
||||
}else{
|
||||
|
||||
var position = new google.maps.LatLng(south,east);
|
||||
|
|
Loading…
Reference in New Issue