Ignore:
Timestamp:
06/15/10 11:24:30 (14 years ago)
Author:
amuller
Message:

Ticket #1059 - Diminui o tamanho do nome de variáveis com mais de 25 caracteres

File:
1 edited

Legend:

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

    r2519 r2930  
    88        cShareMailbox.prototype.get_available_users = function(context) 
    99        { 
    10                 var handler_get_available_users = function(data) 
     10                var _hand_getavluser = function(data) 
    1111                { 
    1212                        select_available_users = document.getElementById('em_select_available_users'); 
     
    3030                        } 
    3131                } 
    32                 cExecute ("expressoMail1_2.ldap_functions.get_available_users2&context="+context, handler_get_available_users); 
     32                cExecute ("expressoMail1_2.ldap_functions.get_available_users2&context="+context, _hand_getavluser); 
    3333        } 
    3434 
     
    310310                //Limpa todo o select 
    311311                 
    312                 var select_available_users_tmp = document.getElementById('em_select_available_users') 
    313                 for(var i = 0;i < select_available_users_tmp.options.length; i++) 
    314                         select_available_users_tmp.options[i--] = null; 
     312                var _sel_avlusertmp = document.getElementById('em_select_available_users') 
     313                for(var i = 0;i < _sel_avlusertmp.options.length; i++) 
     314                        _sel_avlusertmp.options[i--] = null; 
    315315 
    316316                var RegExp_name = new RegExp("\\b"+oText.value, "i"); 
     
    320320                        if (RegExp_name.test(select_available_users_clone[i].text)) 
    321321                        { 
    322                                 sel = select_available_users_tmp.options; 
     322                                sel = _sel_avlusertmp.options; 
    323323                                option = new Option(select_available_users_clone[i].text,select_available_users_clone[i].value);                                 
    324324                                sel[sel.length] = option; 
Note: See TracChangeset for help on using the changeset viewer.