Issue #18775, old flash messages are cleared now upon a new request.

pull/6827/head
Markus Kahl 14 years ago
parent 8d4efffb15
commit 6206b2bbea
  1. 3
      assets/javascripts/reporting/controls.js

@ -68,6 +68,9 @@ Reporting.Controls = {
Reporting.flash("There was an error getting the results. The administrator has been informed.");
};
}
$$('div[id^=flash]').each(function (oldMsg) {
oldMsg.remove();
});
selectAllOptions('group_by_rows');
selectAllOptions('group_by_columns');
var updater = new Ajax.Request(

Loading…
Cancel
Save