From 10daac79846bbae460b0cc539f14e155f60a4aae Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 28 Feb 2013 11:05:35 +0100 Subject: 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 --- application/views/file/upload_form.php | 2 +- data/css/style.css | 16 ++++++++++++++++ data/js/script.js | 15 --------------- 3 files changed, 17 insertions(+), 16 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 @@

Text paste

- +
diff --git a/data/css/style.css b/data/css/style.css index f1066fc7a..625ab7a06 100644 --- a/data/css/style.css +++ b/data/css/style.css @@ -28,6 +28,22 @@ body { } +.text-upload { + height: 200px; +} + +@media (min-height: 700px) { + .text-upload { + height: 300px; + } +} + +@media (min-height: 800px) { + .text-upload { + height: 400px; + } +} + .error h1 { font-size: 19px; } diff --git a/data/js/script.js b/data/js/script.js index 7d84eb9a1..ce20e922d 100644 --- a/data/js/script.js +++ b/data/js/script.js @@ -89,21 +89,6 @@ function fixedEncodeURIComponent (str) { $('.file-upload').bind('change', checkFileUpload); } - $('.text-upload').css('height', '100px'); - $('.text-upload').bind('blur', function() { - $('.text-upload').animate({height: "100px"}, 300); - }); - $('.text-upload').bind('focus', function() { - $('.text-upload').animate({height: "300px"}, 300); - }); - - // work around to submit the form if the click causes the - // textarea to shrink and you can't relase the mouse fast enough - // so mouseup will be outside the button area and not trigger - // submission properly - $('.text-upload-form :submit').bind('mousedown', function() { - $(this).click(); - }); }); })(jQuery); -- cgit v1.2.3-24-g4f1b