Set width of comment entry area in note popups

This commit is contained in:
Tom Hughes 2013-01-15 21:42:43 +00:00
parent 3d7eb387a7
commit 8cd6168b48
3 changed files with 6 additions and 2 deletions

View file

@ -3,7 +3,7 @@
<form action="#">
<input type="hidden" name="lon">
<input type="hidden" name="lat">
<textarea name="text" cols="40" rows="10"></textarea>
<textarea class="comment" name="text" cols="40" rows="10"></textarea>
<br/>
<div class="buttons">
<input type="submit" name="add" value="<%- I18n.t('javascripts.notes.new.add') %>" data-url="<%- create_url %>">

View file

@ -19,7 +19,7 @@
<% }) %>
<% if (note.status == "open") { %>
<form action="#">
<textarea name="text" cols="40" rows="5"></textarea>
<textarea class="comment" name="text" cols="40" rows="5"></textarea>
<br/>
<div class="buttons">
<input type="submit" name="close" value="<%- I18n.t('javascripts.notes.show.close') %>" data-url="<%- note.close_url %>">