diff --git a/public/javascripts/application.js b/public/javascripts/application.js index 1c7d4ef..168ba6c 100644 --- a/public/javascripts/application.js +++ b/public/javascripts/application.js @@ -675,7 +675,8 @@ function hide_and_show(hide_elements, show_elements) { function limited_text_area(textid, limit) { var text = jQuery('#' + textid).val(); - grow_text_area(textid); + // FIXME This will be fixed by: http://noosfero.org/Development/ActionItem3136 + //grow_text_area(textid); var textlength = text.length; jQuery('#' + textid + '_left span').html(limit - textlength); if (textlength > limit) { @@ -1101,4 +1102,4 @@ jQuery(document).ready(function(){ jQuery("#article_has_terms_of_use").click(function(){ showHideTermsOfUse(); }); -}); \ No newline at end of file +}); diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index fe39289..8fac8e7 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -5885,6 +5885,7 @@ li.profile-activity-item.upload_image .activity-gallery-images-count-1 img { #profile-wall #leave_scrap textarea { width: 442px; + height: 100px } .profile-wall-scrap-replies { width: 100%; -- libgit2 0.21.2