Ignore:
Timestamp:
05/06/10 09:12:42 (14 years ago)
Author:
amuller
Message:

Ticket #1064 - Implementando parcialmente o ticket

File:
1 edited

Legend:

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

    r2642 r2714  
     1var openTab = { 
     2        'type' : [], // 8 types of tabs, further info. see expressolivre.org/dev/wiki/mail/Documentacao 
     3        'content_id' : [], 
     4        'imapUid' : [], // Stores the imap email number of current tab 
     5        'countFile' : [0,0,0,0,0,0,0,0,0,0], // Stores the number of files attached in current tab 
     6        'imapBox' : [], // Stores the folder name 
     7        'toPreserve' : [], // Check if the message should be removed from draft after send 
     8        'autosave_timer' : [] // The timeout timer for autosave function 
     9}; 
     10var tabTypes = { 
     11        'new':4, 
     12        'forward':6, 
     13        'reply_with_history':7, 
     14        'reply_to_all_with_history':7, 
     15        'reply_without_history':7, 
     16        'reply_to_all_without_history':7, 
     17        'edit':5 
     18}; 
     19var currentTab,numBox = 0; // Open Tab and num of mailboxes opened at context 
     20 
    121function setBorderAttributes(ID) 
    222{ 
Note: See TracChangeset for help on using the changeset viewer.