Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/Smarty/templates/sphone/products/list.tpl

    r21226 r21453  
    146146 
    147147function getProducts(limit) { 
    148     $.mobile.pageLoading(); 
     148    $.mobile.showPageLoadingMsg(); 
    149149    var i = limit; 
    150150    //送信データを準備 
     
    159159        type: "POST", 
    160160           data: postData, 
     161           url: "<!--{$smarty.const.ROOT_URLPATH}-->products/list.php", 
    161162           cache: false, 
    162163           dataType: "json", 
    163164           error: function(XMLHttpRequest, textStatus, errorThrown){ 
    164165            alert(textStatus); 
    165             $.mobile.pageLoading(true); 
     166            $.mobile.hidePageLoadingMsg(); 
    166167           }, 
    167168           success: function(result){ 
     
    228229                 $("#btn_more_product").hide(); 
    229230             } 
    230              $.mobile.pageLoading(true); 
     231             $.mobile.hidePageLoadingMsg(); 
    231232           } 
    232233}); 
Note: See TracChangeset for help on using the changeset viewer.