Show
Ignore:
Timestamp:
12/09/08 15:28:16 (4 years ago)
Author:
drry
Message:
Location:
lang/javascript/debug
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/debug/debug.js

    r26186 r26187  
    6262   * デバッグ情報をデバッグウィンドウに出力する 
    6363   */ 
    64   this.flush = Function() { 
     64  this.flush = function() { 
    6565    if (false == this.bDebug) return; 
    6666    if (null == this.hWin || this.hWin.closed) { 
  • lang/javascript/debug/readme.txt

    r26186 r26187  
    66この辺を参考に自分なりに修正してみた。 
    77 
    8     * 出力の色を行ごとに変えるようにした。 
     8    * 行ごとに出力の色を変えるようにした。 
    99    * 出力でHTMLの特殊文字(「<」, 「>」, 「&」, 「"」)を変換するようにした。 
    1010 
     
    2323      var str = "任意の文字列"; 
    2424      var int = 0; 
    25       var function = function(){}; 
     25      var function = function() {}; 
    2626      var object = new Object(); 
    2727      debug.p(str);