Changeset dbdd71f in github


Ignore:
Timestamp:
Jul 31, 2010 6:22:32 AM (3 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
0e2ccb3
Parents:
5cff852
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/js/app.js

    r5cff852 rdbdd71f  
    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.