]> wagnertech.de Git - mfinanz.git/blobdiff - js/client_js.js
Automatisches Löschen von Flashanzeige unterdrückbar
[mfinanz.git] / js / client_js.js
index c592e4c8e29fd2c0c4ecf7e5652639c5584394f0..d29fca627427838acb16833a7d8b000c72d12798 100644 (file)
@@ -35,6 +35,7 @@ ns.eval_json_result = function(data) {
   if (data.error)
     return ns.display_flash('error', data.error);
 
+  if (!data.no_flash_clear) {
   $(['info', 'warning', 'error']).each(function(idx, category) {
     $('#flash_' + category).hide();
     $('#flash_detail_' + category).hide();
@@ -42,7 +43,7 @@ ns.eval_json_result = function(data) {
     $('#flash_' + category + '_content').empty();
     $('#flash_' + category + '_detail').empty();
   });
-
+  }
   if ((data.js || '') != '')
     eval(data.js);