Changeset 634

Show
Ignore:
Timestamp:
2007-10-05 18:11:54 (1 year ago)
Author:
MaierMan
Message:

smaller fixes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/chrome/content/common/overlayFunctions.js

    r623 r634  
    220220                        } 
    221221                        if (e instanceof Components.Exception) { 
    222                                 if (!e.message) 
    223                                         text += e; 
    224                                 else 
    225                                         text += e.message + " (nsResult=" + e.result + ")"; 
     222                                text += e.toString(); 
    226223                        } else if (e instanceof Error) { 
    227224                                if (!e.message) 
  • trunk/chrome/content/dta/addurl.js

    r619 r634  
    7676NumericRange.prototype = { 
    7777        _format: function(i) { 
    78                 var rv = String(Math.abs(i)); 
     78                let rv = String(Math.abs(i)); 
    7979                while (rv.length < this.strl) { 
    8080                        rv = '0' + rv;