diff options
author | alecpl <alec@alec.pl> | 2010-06-30 17:56:31 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-06-30 17:56:31 +0000 |
commit | 9bfcb3b98cd0653d9376fb12558a1e5c57990a1c (patch) | |
tree | e6d572098927f08c94de2ab0cb998f734bcca028 /program/js/googiespell.js | |
parent | 3e91f08b6a8bc231ef71ec24353d466f355ae5a6 (diff) |
- small fix for googie layer height setting
Diffstat (limited to 'program/js/googiespell.js')
-rw-r--r-- | program/js/googiespell.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/googiespell.js b/program/js/googiespell.js index 27658a4a7..a03c6082f 100644 --- a/program/js/googiespell.js +++ b/program/js/googiespell.js @@ -567,7 +567,7 @@ this.showErrorWindow = function(elm, id) { 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); |