Changeset 387
- Timestamp:
- 10/21/05 06:58:08 (8 years ago)
- Files:
-
- 1 modified
-
trunk/plugins/CharCounter/char-counter.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/CharCounter/char-counter.js
r376 r387 25 25 26 26 CharCounter.prototype.onGenerate = function() { 27 var self = this; 27 var self = this; 28 if (this.charCount==null) { 28 29 var charCount = document.createElement("span"); 29 30 charCount.style.padding = "2px 5px"; 30 if(HTMLArea.is_ie) {31 if(HTMLArea.is_ie) { 31 32 charCount.style.styleFloat = "right"; 32 33 } else { … … 47 48 this.editor._statusBar.appendChild(brk); 48 49 this.charCount = charCount; 50 } 49 51 }; 50 52
