チェンジセット 3733

差分発生行の前後
無視リスト:
コミット日時:
2010/04/10 00:51:02 (3 年前)
コミッタ:
hkrn
ログメッセージ:

removed playerProductionInstall.swf and should not be occured an error at Google Chrome

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/gunyarapaint/branches/gunyarapaint/compat/html-template/index.template.html

    r3732 r3733  
    44<meta http-equiv="Content-Script-Type" content="text/javascript" /> 
    55<meta http-equiv="Content-Style-Type" content="text/css" /> 
     6<meta name="robots" content="noindex,nofollow,noarchive" /> 
    67<title>${title}</title> 
    78<style> 
     
    1718  if (query) { 
    1819    var pairs = query.split(/[&;]/); 
    19     for (var i in pairs) { 
     20    var length = pairs.length; 
     21    for (var i = 0; i < length; i++) { 
    2022      var pair = pairs[i].split('='); 
    2123      vars[pair[0]] = pair[1]; 
     
    4345  ); 
    4446} 
     47var callBeforeUnload = true; 
    4548function onBeforeUnload(event) { 
    46   if (!event) 
    47       window.event; 
    48   event.returnValue = "ぐにゃらペイントを終了しようとしています"; 
     49  if (callBeforeUnload) { 
     50    event = event || window.event; 
     51    return event.returnValue = "ぐにゃらペイントを終了しようとしています。閉じると描いた絵が全て消えてしまいます。"; 
     52  } 
    4953} 
    50 function changeAlertOnUnload(bool) { 
     54function changeAlertOnUnload(value) { 
     55  callBeforeUnload = value; 
    5156} 
    5257//-->