Changeset 634
- Timestamp:
- 2007-10-05 18:11:54 (1 year ago)
- Files:
-
- trunk/chrome/content/common/overlayFunctions.js (modified) (1 diff)
- trunk/chrome/content/dta/addurl.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/common/overlayFunctions.js
r623 r634 220 220 } 221 221 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(); 226 223 } else if (e instanceof Error) { 227 224 if (!e.message) trunk/chrome/content/dta/addurl.js
r619 r634 76 76 NumericRange.prototype = { 77 77 _format: function(i) { 78 varrv = String(Math.abs(i));78 let rv = String(Math.abs(i)); 79 79 while (rv.length < this.strl) { 80 80 rv = '0' + rv;
