Ignore:
File:
1 edited

Legend:

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

    r21272 r21453  
    146146<script> 
    147147function getMailDetail(send_id) { 
    148     $.mobile.pageLoading(); 
     148    $.mobile.showPageLoadingMsg(); 
    149149    $.ajax({ 
    150150           type: "GET", 
     
    155155           error: function(XMLHttpRequest, textStatus, errorThrown){ 
    156156               alert(textStatus); 
    157                $.mobile.pageLoading(true); 
     157               $.mobile.hidePageLoadingMsg(); 
    158158           }, 
    159159           success: function(result){ 
     
    164164               $($("#windowcolumn dl.view_detail dd").get(maxCnt)).html(result[0].mail_body.replace(/\n/g,"<br />")); 
    165165               $("#windowcolumn dl.view_detail dd").css('font-family', 'monospace'); 
    166                $.mobile.changePage('#windowcolumn', 'slideup'); 
     166               $.mobile.changePage('#windowcolumn', {transition: "slideup"}); 
    167167               //ダイアログが開き終わるまで待機 
    168168               setTimeout( function() { 
    169169                               loadingState = 0; 
    170                                $.mobile.pageLoading(true); 
     170                               $.mobile.hidePageLoadingMsg(); 
    171171                          }, 1000); 
    172172           } 
Note: See TracChangeset for help on using the changeset viewer.