Changeset 4647 for branches


Ignore:
Timestamp:
07/01/11 13:51:31 (13 years ago)
Author:
brunocosta
Message:

Ticket #2050 - Foram modificadas variaveis na função charOrbA por bug no IE7.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.0.1/expressoMail1_2/js/local_messages.js

    r4646 r4647  
    1111 
    1212function charOrdA (a, b){ 
    13     a = a[0].toLowerCase(); 
    14     b = b[0].toLowerCase(); 
    15     if (a>b) return 1; 
    16     if (a <b) return -1; 
     13    var primeiro = a[0].toLowerCase(); 
     14    var segundo = b[0].toLowerCase(); 
     15    if (primeiro > segundo) return 1; 
     16    if (primeiro < segundo) return -1; 
    1717    return 0; 
    1818} 
Note: See TracChangeset for help on using the changeset viewer.