diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-02-28 11:05:35 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-02-28 11:12:53 +0100 |
commit | 10daac79846bbae460b0cc539f14e155f60a4aae (patch) | |
tree | c289b8ce7c981f7e4234a706366ef0b61b0fda22 /application/views | |
parent | ebfed171c57f4e9848b730c1d9bab6418f463514 (diff) |
upload_form: Resize textarea using responsive css rather than js
This no longer resizes the textarea after the user change the size
themself.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views')
-rw-r--r-- | application/views/file/upload_form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/views/file/upload_form.php b/application/views/file/upload_form.php index c2ee18e2f..0596fcbaf 100644 --- a/application/views/file/upload_form.php +++ b/application/views/file/upload_form.php @@ -4,7 +4,7 @@ <div class="span12 text-upload-form"> <?php echo form_open_multipart('file/do_paste'); ?> <h2>Text paste</h2> - <textarea name="content" class="text-upload span12" style="height: 300px;"></textarea> + <textarea name="content" class="text-upload span12"></textarea><br> <button type="submit" class="btn btn-primary">Paste it!</button> </form> </div> |