Ignore:
Timestamp:
12/29/10 16:42:52 (13 years ago)
Author:
alexandrecorreia
Message:

Ticket #1468 - Notificacao por email de uploads de arquivos enviados pelo modulo Filemanager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/filemanager/js/draw_api.js

    r3642 r3647  
    8686        if( showHidden == null ) 
    8787                showHidden = new ShowHidden( 200 ); 
    88          
     88 
    8989        var _itens = ""; 
    9090                 
     
    9393                if( _options[i].constructor == Function ) 
    9494                        continue; 
    95                          
     95 
    9696                _itens += '<img src="' + _options[i][2] + '" '+ _options[i][3] +'/>'; 
    9797                _itens += '<a href='+_options[i][1]+' style="cursor:pointer; margin:3px;">' + _options[i][0] + '</a><br/>' 
     
    100100        var _optionsItens                               = document.createElement("div"); 
    101101                _optionsItens.id                        = "fastMenuFileManager"; 
    102                 _optionsItens.style.top         = _parent.style.top + "px"; 
    103                 _optionsItens.style.left        = ( _parent.style.left + 40 ) + "px";    
    104102                _optionsItens.className         = "x-menu"; 
    105103                _optionsItens.style.zIndex      = zIndex++; 
     
    111109                showHidden.action('onmouseover', 'onmouseout', _optionsItens); 
    112110 
    113         _parent.parentNode.appendChild( _optionsItens ); 
    114          
     111                _parent.parentNode.appendChild( _optionsItens ); 
    115112} 
    116113 
     
    476473        return filesUrl; 
    477474} 
     475 
    478476toolbar.prototype.control = function () 
    479477{ 
    480         var arg         = arguments[0]; 
     478        var _arg        = arguments[0]; 
    481479        var _parent     = ( arguments[1] ) ? arguments[1] : null ;  
    482          
    483         switch ( arg ) 
     480 
     481        switch ( _arg ) 
    484482        { 
    485483                case 'new': 
     
    495493                         
    496494                        draw_menu( itens, _parent ); 
    497                          
     495 
    498496                        break; 
    499497                         
Note: See TracChangeset for help on using the changeset viewer.