Ignore:
Timestamp:
2013/08/14 20:33:02 (11 years ago)
Author:
pineray
Message:

#2342 JavaScript?のグローバルな宣言を減らす
フォーム関連残り.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/html/user_data/packages/admin/js/admin.js

    r23063 r23064  
    2020 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. 
    2121 */ 
    22  
    23 //親ウィンドウのページを変更する。 
    24 function fnUpdateParent(url) { 
    25     // 親ウィンドウの存在確認 
    26     if(eccube.common.isOpener()) { 
    27         window.opener.location.href = url; 
    28     } else { 
    29         window.close(); 
    30     } 
    31 } 
    3222 
    3323// 親ウィンドウをポストさせる。 
     
    198188            ); 
    199189        if(document.form1['stock_unlimited'].checked) { 
    200             fnChangeDisabled(list, icolor); 
     190            eccube.common.changeDisabled(list, icolor); 
    201191            document.form1['stock'].value = ""; 
    202192        } else { 
    203             fnChangeDisabled(list, ''); 
     193            eccube.common.changeDisabled(list, ''); 
    204194        } 
    205195    } 
     
    330320            ); 
    331321        if(document.form1[elem2].checked) { 
    332             fnChangeDisabled(list, icolor); 
     322            eccube.common.changeDisabled(list, icolor); 
    333323            document.form1[elem1].value = ""; 
    334324        } else { 
    335             fnChangeDisabled(list, ''); 
    336         } 
    337     } 
    338 } 
     325            eccube.common.changeDisabled(list, ''); 
     326        } 
     327    } 
     328} 
Note: See TracChangeset for help on using the changeset viewer.