Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Feedback/templates/index.twig')
-rw-r--r--plugins/Feedback/templates/index.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Feedback/templates/index.twig b/plugins/Feedback/templates/index.twig
index 7bd23e21b5..ab26930b98 100644
--- a/plugins/Feedback/templates/index.twig
+++ b/plugins/Feedback/templates/index.twig
@@ -13,7 +13,7 @@
});
$('#feedback-form-submit').click(function () {
- var feedback = $('#feedback-form form');
+ var feedback = $('#feedback-form').find('form');
$('#feedback-form').hide();
$.post(feedback.attr('action'), feedback.serialize(), function (data) {
$('#feedback-sent').show().html(data);