We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a883149 commit 76c76a9Copy full SHA for 76c76a9
1 file changed
feedback/templates_j2/feedback/_form.html
@@ -194,7 +194,9 @@
194
const c = f.find('.history-well'), m = c.find('.show-more');
195
m.click(function() { c.find('li.initially-hidden').removeClass('initially-hidden').show(); m.hide(); });
196
// empty textfields
197
- c.next('textarea, input[type="text"]').val("");
+ window.setTimeout(function() {
198
+ c.next('textarea, input[type="text"]').val("");
199
+ })
200
// implement edited notification
201
const o = f.find('.only-when-edited'), i = f.serialize();
202
let s = false;
0 commit comments