切换为全部数字列表

This commit is contained in:
wlx 2013-06-18 12:09:16 +00:00
parent 1e05da7fbe
commit 6bed4b8821
1 changed files with 4 additions and 3 deletions

View File

@ -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('-');
@ -279,7 +279,8 @@ function setRectangle(east,west,south,north){
editable: false
});
rectangle.setMap(map);
rectangle.setMap(map);
}else{