]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Re-added some javascript to toggle upload field.
authorRobin Millette <millette@controlyourself.ca>
Mon, 1 Jun 2009 19:52:52 +0000 (15:52 -0400)
committerRobin Millette <millette@controlyourself.ca>
Mon, 1 Jun 2009 19:52:52 +0000 (15:52 -0400)
js/util.js
lib/noticeform.php

index 20f17f6e76ea3237f97c1a89afc32059cb4bc976..acf44a17c78d9f27fb8cadb76b290652b7dbef9c 100644 (file)
  */
 
 $(document).ready(function(){
+    $('input#notice_data-attach').toggle();
+    $('label[for=notice_data-attach]').text('Upload a file as an attachment?');
+    $('label[for=notice_data-attach]').click(function () {
+        if ('Upload a file as an attachment?' == $(this).text()) {
+            $(this).text('Upload: ');
+            $('input#notice_data-attach').slideDown('fast');
+        } else {
+            $('input#notice_data-attach').slideUp('fast', function() {$('label[for=notice_data-attach]').text('Upload a file as an attachment?');});
+        }
+    });
+
     $('a.attachment').click(function() {$().jOverlay({url: $('address .url')[0].href+'/attachment/' + ($(this).attr('id').substring('attachment'.length + 1)) + '/ajax'}); return false; });
     $("a.thumbnail").hover(
         function() {
index 5a6c7cf38c3ce96ee130f36a65d1e81a5cdcf1ef..805cd56b131418ba599216c432bef4302bbd3514 100644 (file)
@@ -148,6 +148,7 @@ class NoticeForm extends Form
         $this->out->element('dd', array('id' => 'notice_text-count'),
                             '140');
         $this->out->elementEnd('dl');
+        $this->out->element('br', array('style' => 'clear:both'));
         $this->out->element('label', array('for' => 'notice_data-attach'), _('Attach'));
         $this->out->element('input', array('id' => 'notice_data-attach',
                                            'type' => 'file',