Skip to content
Extraits de code Groupes Projets
Valider 2dd4d251 rédigé par Benaka Moorthi's avatar Benaka Moorthi
Parcourir les fichiers

Show success message after a scheduled report is successfully sent when 'Send...

Show success message after a scheduled report is successfully sent when 'Send report now' is clicked.
parent 085d752a
Branches
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -2187,7 +2187,8 @@
"TopOfReport": "Back to top",
"Pagination": "Page %s of %s",
"ReportIncludeNWebsites": "The report will include main metrics for all websites that have at least one visit (from the %s websites currently available).",
"TopLinkTooltip": "Create Email Reports to get Piwik stats delivered to your email or your customers' address automatically!"
"TopLinkTooltip": "Create Email Reports to get Piwik stats delivered to your email or your customers' address automatically!",
"ReportSent": "Report sent"
},
"ImageGraph": {
"PluginDescription": "Generate beautiful static PNG Graph images for any Piwik report.",
......
......@@ -108,6 +108,13 @@ function initManagePdf() {
var ajaxHandler = new ajaxHelper();
ajaxHandler.addParams(parameters, 'POST');
ajaxHandler.setLoadingElement();
ajaxHandler.setCallback(function (response) {
$('.reportSentSuccess').fadeIn('slow', function () {
setTimeout(function () {
$('.reportSentSuccess').fadeOut('slow');
}, 1000);
});
});
ajaxHandler.send(true);
});
......
......@@ -10,6 +10,7 @@
<div class="centerLargeDiv">
<h2>{{ 'ScheduledReports_ManageEmailReports'|translate }}</h2>
<span class="ajaxSuccess reportSentSuccess" style="display:none;">{{ 'ReportSent'|translate }}!</span>
<div class="entityContainer">
{% import 'ajaxMacros.twig' as ajax %}
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter