Changeset 2032
- Timestamp:
- 06/16/09 07:48:37 (9 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/0.9/pylucid_project/apps/pylucid/templates/admin/base_site.html
r2022 r2032 20 20 background: url('{{ PyLucid_media_url }}superfish/shadow.png') no-repeat bottom right; 21 21 } 22 textarea { 23 width:85%; 24 } 22 25 --> 23 26 </style> … … 39 42 // Resize all textareas 40 43 // 41 $("textarea").each(function (i) {44 $("textarea").each(function() { 42 45 rows = this.value.split("\n").length; 43 46 if (rows > MAX_ROWS) {rows = MAX_ROWS;}