Commit 2234c20e9443ce4f609b2ab0cf5a4d22e86ef974
1 parent
5cacb983
Exists in
master
and in
28 other branches
profile-wall: temporary fix to scrap box growing indefinetely
This problem was properly fixed on: http://noosfero.org/Development/ActionItem3136
Showing
2 changed files
with
4 additions
and
2 deletions
Show diff stats
public/javascripts/application.js
... | ... | @@ -675,7 +675,8 @@ function hide_and_show(hide_elements, show_elements) { |
675 | 675 | |
676 | 676 | function limited_text_area(textid, limit) { |
677 | 677 | var text = jQuery('#' + textid).val(); |
678 | - grow_text_area(textid); | |
678 | + // FIXME This will be fixed by: http://noosfero.org/Development/ActionItem3136 | |
679 | + //grow_text_area(textid); | |
679 | 680 | var textlength = text.length; |
680 | 681 | jQuery('#' + textid + '_left span').html(limit - textlength); |
681 | 682 | if (textlength > limit) { |
... | ... | @@ -1101,4 +1102,4 @@ jQuery(document).ready(function(){ |
1101 | 1102 | jQuery("#article_has_terms_of_use").click(function(){ |
1102 | 1103 | showHideTermsOfUse(); |
1103 | 1104 | }); |
1104 | -}); | |
1105 | 1105 | \ No newline at end of file |
1106 | +}); | ... | ... |
public/stylesheets/application.css