##// END OF EJS Templates
Fixed full form switching
neko259 -
r713:7f2e98f4 default
parent child Browse files
Show More
@@ -26,8 +26,8 b" var fullForm = $('.swappable-form-full')"
26 26 function swapForm() {
27 27 if (isCompact) {
28 28 // TODO Use IDs (change the django form code) instead of absolute numbers
29 fullForm.find('textarea').appendTo(fullForm.find('.form-row')[4]);
30 fullForm.find('.file_wrap').appendTo(fullForm.find('.form-row')[7]);
29 fullForm.find('textarea').appendTo(fullForm.find('.form-row')[4].children[0]);
30 fullForm.find('.file_wrap').appendTo(fullForm.find('.form-row')[7].children[0]);
31 31 fullForm.find('.form-row').show();
32 32
33 33 scrollToBottom();
General Comments 0
You need to be logged in to leave comments. Login now