Ignore:
Timestamp:
07/19/11 13:33:32 (13 years ago)
Author:
roberto.santosjunior
Message:

Ticket #1820 - Menu de contexto não é exibido em todos resultados de pesquisa.r4654

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/abas.js

    r4787 r4802  
    391391        return true; 
    392392} 
     393 
     394function getTabPrefix() { 
     395        if (typeof(currentTab)!='number') 
     396                return currentTab+"_"; 
     397        else 
     398                return ""; 
     399} 
     400 
     401function getMessageIdFromRowId(row_id) { 
     402        if (row_id.match("_s")) 
     403                return row_id.substr(0,3); 
     404        else 
     405                return row_id; 
     406} 
Note: See TracChangeset for help on using the changeset viewer.