Skip to content

Commit a9dad99

Browse files
committed
Fix JS behavior
1 parent 5f4fb4f commit a9dad99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Snippets/files/snippets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ $(document).ready(function() {
2828
}
2929

3030
select.change(function() {
31-
textarea.text(textarea.text() + $(this).val());
31+
textarea.val(textarea.val() + $(this).val());
3232
$(this).val("");
3333
});
3434
label.append(select);

0 commit comments

Comments
 (0)