Ignore:
Timestamp:
07/02/11 16:51:54 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #2053 - Menu de contexto não é exibido em todos resultados de pesquisa

File:
1 edited

Legend:

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

    r4635 r4654  
    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.