Changeset 20379


Ignore:
Timestamp:
2011/02/24 17:01:40 (13 years ago)
Author:
tao
Message:

refs #1053 ダブルクリックとかされない様にローディング画面を追加。

Location:
branches/version-2_5-dev
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/Smarty/templates/admin/main_frame.tpl

    r20328 r20379  
    5353 
    5454        <!--{$tpl_onload}--> 
     55        $("div#wrap_loading").hide(); 
     56        $("a,input[type=submit]").click(function(){ 
     57            $("div#wrap_loading").height($(document).height()); 
     58            $("div#wrap_loading").show(); 
     59        }); 
    5560    }); 
    5661//]]> 
     
    6065 
    6166<body class="<!--{if strlen($tpl_authority) >= 1}-->authority_<!--{$tpl_authority}--><!--{/if}-->"> 
     67<div id="wrap_loading"></div> 
    6268<!--{$GLOBAL_ERR}--> 
    6369<noscript> 
  • branches/version-2_5-dev/html/user_data/packages/admin/css/admin_contents.css

    r20310 r20379  
    14631463 
    14641464/*以上インストールページと共通■触るべからず*/ 
     1465div#wrap_loading{ 
     1466    position: absolute; 
     1467    width: 100%; 
     1468    height: 100%; 
     1469    top:0; 
     1470    left: 0; 
     1471    z-index: 9999; 
     1472    background: url(../img/common/bg_loading.png) transparent; 
     1473} 
Note: See TracChangeset for help on using the changeset viewer.