Ignore:
Timestamp:
04/16/10 17:36:06 (14 years ago)
Author:
amuller
Message:

Ticket #1036 - Colocando semicolons nos finais das atribuições

File:
1 edited

Legend:

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

    r2561 r2572  
    133133        { 
    134134                return false; 
    135         } 
     135        }; 
    136136         
    137137        var _this = this; 
     
    151151        };       
    152152         
    153 } 
     153}; 
    154154 
    155155DragArea.prototype.makeDragged = function(element, msg_number, subject, from_list, folder){ 
    156156        element.oncontextmenu = function(e) { 
    157157                return false; 
    158         } 
     158        }; 
    159159        var _this = this; 
    160160        element.onmousedown = function (e){ 
     
    192192                return true; 
    193193        };       
    194 } 
     194}; 
    195195DragArea.prototype.showLayerDrag = function(e){ 
    196196 
     
    214214        this.div_dd.innerHTML = "<img align='center' src='"+this.envelope.src+"'>&nbsp;<span id='content_dd'><font color='red' weight='bold'><b>"+this.subject+"</b></span></font>"; 
    215215        this.div_dd.style.display =''; 
    216 } 
     216}; 
    217217 
    218218DragArea.prototype.onSelectStart = function(value){ 
    219219        if(!value) { 
    220                 document.body.onselectstart = function (e){return false;} 
    221                 document.body.ondragstart = function (e){return false;} 
     220                document.body.onselectstart = function (e){return false;}; 
     221                document.body.ondragstart = function (e){return false;}; 
    222222        } 
    223223        else { 
    224                 document.body.onselectstart = function (e){return true;} 
    225                 document.body.ondragstart = function (e){return true;} 
    226         } 
    227 } 
     224                document.body.onselectstart = function (e){return true;}; 
     225                document.body.ondragstart = function (e){return true;}; 
     226        } 
     227}; 
    228228 
    229229DragArea.prototype.mouseMoveDrag = function(e){          
     
    254254 
    255255        return false; 
    256 } 
     256}; 
Note: See TracChangeset for help on using the changeset viewer.