Replaced the Textarea widget with the TextAreaDiv widget on document and document page detail views

This commit is contained in:
Roberto Rosario
2011-08-05 07:42:27 -04:00
parent beea100cd9
commit 65f9eb11fb
4 changed files with 9 additions and 7 deletions
-1
View File
@@ -72,7 +72,6 @@ class TextAreaDiv(forms.widgets.Widget):
def __init__(self, attrs=None):
# The 'rows' and 'cols' attributes are required for HTML correctness.
default_attrs = {'class': 'text_area_div'}
#'cols': '40', 'rows': '10'}
if attrs:
default_attrs.update(attrs)
super(TextAreaDiv, self).__init__(default_attrs)