Changes between Initial Version and Version 1 of Ticket #2629
- Timestamp:
- Aug 2, 2009, 11:55:19 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2629
-
Property
Summary
changed from
Autogrow does not work with defualt fckeditor.js file
toAutogrow does not work with default fckeditor.js file
-
Property
Summary
changed from
-
Ticket #2629 – Description
initial v1 1 Because the fckeditor.js file stipulates a default height here 2 Line 34: this.Height = height || '200' ; 3 Changing this line to read 4 Line 34: this.Height = height; 5 Fix's the problem. 1 Because the fckeditor.js file stipulates a default height here[[BR]] 2 {{{Line 34: this.Height = height || '200' ;}}} 3 4 Changing this line to read[[BR]] 5 {{{Line 34: this.Height = height;}}} 6 7 Fixes the problem. 8 6 9 This was a very frustrating bug to figure out with many hours wasted tracking it down, in the least the plugin source should be documented to note this problem.