Changeset 3847 in subversion


Ignore:
Timestamp:
Jul 31, 2010 6:22:32 AM (3 years ago)
Author:
thomasb
Message:

Don't replace error messages with loading info (#1486300)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/js/app.js

    r3846 r3847  
    10191019        msg = 'Loading...'; 
    10201020 
    1021       this.display_message(msg, 'loading', true); 
    1022     } 
    1023     else if (!a) 
     1021      if (this.gui_objects.message && this.gui_objects.message.__type != 'error') 
     1022        this.display_message(msg, 'loading', true); 
     1023    } 
     1024    else if (!a && this.gui_objects.message && this.gui_objects.message.__type != 'error') 
    10241025      this.hide_message(); 
    10251026 
     
    44904491 
    44914492    var obj = $(this.gui_objects.message).html(cont).show(); 
     4493    this.gui_objects.message.__type = type; 
    44924494 
    44934495    if (type!='loading') 
Note: See TracChangeset for help on using the changeset viewer.