Ignore:
Timestamp:
2010/03/11 10:35:11 (14 years ago)
Author:
kajiwara
Message:

正式版にナイトリービルド版をマージしてみるテスト

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tmp/version-2_5-test/html/user_data/packages/default/js/admin.js

    r16757 r18609  
    131131// 管理者メンバーページの切替 
    132132function fnMemberPage(pageno) { 
    133     location.href = "./index.php?pageno=" + pageno; 
     133    location.href = "?pageno=" + pageno; 
    134134} 
    135135 
     
    279279} 
    280280 
    281 // 購入制限数判定 
    282 function fnCheckSaleLimit(icolor) { 
    283     list = new Array( 
    284         'sale_limit' 
    285         ); 
    286     if(document.form1['sale_unlimited'].checked) { 
    287         fnChangeDisabled(list, icolor); 
    288         document.form1['sale_limit'].value = ""; 
    289     } else { 
    290         fnChangeDisabled(list, ''); 
    291     } 
    292 } 
    293  
    294281// 在庫数判定 
    295282function fnCheckAllStockLimit(max, icolor) { 
     
    430417} 
    431418 
    432  
    433  
     419// ページ読み込み時の処理 
     420$(function(){ 
     421// ヘッダナビゲーション 
     422    $("#navi li").hover( 
     423        function(){ 
     424            $(this).addClass("sfhover"); 
     425        }, 
     426        function(){ 
     427            $(this).removeClass("sfhover"); 
     428        } 
     429    ); 
     430}); 
Note: See TracChangeset for help on using the changeset viewer.