Changeset 1013

Show
Ignore:
Timestamp:
07/31/08 06:27:33 (1 month ago)
Author:
MaierMan
Message:

Fix typo

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/chrome/content/dta/manager.js

    r1012 r1013  
    717717                                case 'content-length': 
    718718                                        let contentLength = new Number(aValue); 
    719                                         Debug.logString(contentLength); 
    720719                                        if (contentLength > 0 && !isNaN(contentLength)) { 
    721                                                 this.ccontentLength = Math.floor(contentLength);  
     720                                                this.contentLength = Math.floor(contentLength);  
    722721                                        } 
    723722                                break; 
     
    10911090        get totalSize() { return this._totalSize; }, 
    10921091        set totalSize(nv) { 
    1093                 Debug.logString(nv + "/" + this._totalSize); 
    10941092                if (this._totalSize == nv) { 
    10951093                        return nv;