diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-06-01 15:52:52 -0400 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-06-01 15:52:52 -0400 |
commit | 0cbd72e0927cbe9b605e34d7bbd86d2046ea0c49 (patch) | |
tree | f5950ae0453d0d47dc9f9dc6cac4c99f019b2167 /js/util.js | |
parent | 4bd195b80f1bf9f7da11ed8cc14a0027228f733e (diff) |
Re-added some javascript to toggle upload field.
Diffstat (limited to 'js/util.js')
-rw-r--r-- | js/util.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/util.js b/js/util.js index 20f17f6e7..acf44a17c 100644 --- a/js/util.js +++ b/js/util.js @@ -17,6 +17,17 @@ */ $(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() { |