Ignore:
Timestamp:
Jul 24, 2010, 5:17:50 PM (14 years ago)
Author:
grum
Message:

Version 1.2.3, features:1439,1690

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/lmt/admin/plugin_admin_manage.tpl

    r5548 r6701  
    1010  function loadpage(pagenum)
    1111  {
    12     tmp=$.ajax({
    13       type: "POST",
    14       url: "{/literal}{$datas.LMT_AJAX_URL_LIST}{literal}"+pagenum,
    15       async: false,
    16      }).responseText;
     12    $("#list").html("<br><img src='./plugins/GrumPluginClasses/icons/processing.gif'>");
    1713
    18     $("#nbphotos").attr("innerHTML", tmp.substr(0,tmp.indexOf("#")));
    19     $("#list").attr("innerHTML", tmp.substr(tmp.indexOf("#")+1));
     14    $.ajax(
     15      {
     16        type: "POST",
     17        url: "{/literal}{$datas.LMT_AJAX_URL_LIST}{literal}"+pagenum,
     18        async: true,
     19        success: function (msg)
     20          {
     21            $("#nbphotos").html(msg.substr(0,msg.indexOf("#")));
     22            $("#list").html(msg.substr(msg.indexOf("#")+1));
     23          }
     24      }
     25    );
    2026  }
    2127
Note: See TracChangeset for help on using the changeset viewer.