Show More
@@ -36,8 +36,10 b' function swapForm() {' | |||
|
36 | 36 | compactForm.find('textarea')[0].value = oldText; |
|
37 | 37 | } |
|
38 | 38 | isCompact = !isCompact; |
|
39 | ||
|
40 | scrollToBottom(); | |
|
39 | 41 | } |
|
40 | 42 | |
|
41 | 43 | if (compactForm.length > 0) { |
|
42 | 44 | fullForm.toggle(); |
|
43 | } No newline at end of file | |
|
45 | } |
@@ -51,4 +51,9 b' function addQuickReply(postId) {' | |||
|
51 | 51 | $("html, body").animate({ scrollTop: $(textAreaId).offset().top }, "slow"); |
|
52 | 52 | } |
|
53 | 53 | |
|
54 | function scrollToBottom() { | |
|
55 | var $target = $('html,body'); | |
|
56 | $target.animate({scrollTop: $target.height()}, 1000); | |
|
57 | } | |
|
58 | ||
|
54 | 59 | $('#full-form').toggle(); |
General Comments 0
You need to be logged in to leave comments.
Login now