- small fix for googie layer height setting
| | |
| | | this.createEditLayer = function(width, height) { |
| | | this.edit_layer = document.createElement('div'); |
| | | $(this.edit_layer).addClass('googie_edit_layer').attr('id', 'googie_edit_layer') |
| | | .width(width).height(height); |
| | | .width('auto').height(height); |
| | | |
| | | if (this.text_area.nodeName.toLowerCase() != 'input' || $(this.text_area).val() == '') { |
| | | $(this.edit_layer).css('overflow', 'auto').height(height-4); |
| | |
| | | $('#compose-body_ifr').width((w+2)+'px').height((h-54)+'px'); |
| | | } |
| | | else { |
| | | $('#googie_edit_layer').width(w-(bw.ie || bw.opera || bw.safari ? 2 : 0)+'px').height(h+'px'); |
| | | $('#googie_edit_layer').height(h+'px'); |
| | | } |
| | | }, |
| | | |