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/color_palette.js

    r2517 r2572  
    1212                                                new Array("#000000","#330000","#663300","#663333","#333300","#003300","#003333","#000066","#330099","#330033")); 
    1313        this.buildPalette(); 
    14 } 
     14}; 
    1515 
    1616// funçoes 
     
    2020        document.getElementById("palettecolor").style.visibility="hidden"; 
    2121        mainField.focus(); 
    22 } 
     22}; 
    2323 
    2424cColorPalette.prototype.repos = function (intElemScrollTop) 
     
    2626        var new_pos = findPosY(Element("forecolor")) - intElemScrollTop + 20; 
    2727        this.div.style.top = new_pos; 
    28 } 
     28}; 
    2929 
    3030cColorPalette.prototype.loadPalette = function (id) 
     
    4848                this.div.style.left = findPosY(Element("forecolor"))+ 227; 
    4949        } 
    50 } 
     50}; 
    5151 
    5252cColorPalette.prototype.buildPalette = function (){ 
     
    8383                        _td.onclick= function(){ document.getElementById("palettecolor").style.visibility="hidden";ColorPalette.changeFontColor(this.id);}; 
    8484                        _td.onmouseover = function(){ this.className = "sel_color";}; 
    85                         _td.onmouseout = function(){ this.className = "unsel_color";} 
     85                        _td.onmouseout = function(){ this.className = "unsel_color";}; 
    8686                        var p = new Image(); 
    8787                        p.style.width='1px'; 
     
    9191                } 
    9292        } 
    93 } 
     93}; 
    9494 
    9595/* Build the Object */ 
Note: See TracChangeset for help on using the changeset viewer.