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

    r2561 r2572  
    66        this.buildEditor(); 
    77        this.saveFlag = 0; 
    8 } 
     8}; 
    99 
    1010cRichTextEditor.prototype.loadEditor = function(ID) { 
     
    3636        document.getElementById('fontname').selectedIndex = 0; 
    3737        document.getElementById('fontsize').selectedIndex = 0; 
    38 } 
     38}; 
    3939 
    4040cRichTextEditor.prototype.createElementEditor = function(pObj) 
     
    6565                parentDiv.appendChild(checkbox); 
    6666                parentDiv.appendChild(text); 
    67 } 
     67}; 
    6868 
    6969cRichTextEditor.prototype.viewsource = function(source) { 
     
    100100                } 
    101101        } 
    102 } 
     102}; 
    103103 
    104104cRichTextEditor.prototype.buildEditor = function() { 
     
    203203        tbody.appendChild(tr); 
    204204        this.table.appendChild(tbody); 
    205 } 
     205}; 
    206206 
    207207cRichTextEditor.prototype.editorCommand = function(command, option) { 
     
    245245                //mainField.focus(); 
    246246    } catch (e) {/* alert(e);*/ } 
    247 } 
     247}; 
    248248 
    249249cRichTextEditor.prototype.createLink = function(){ 
     
    265265                this.editorCommand("CreateLink", szURL); 
    266266        } 
    267 } 
     267}; 
    268268 
    269269// It include the image file in emails body 
     
    309309        save_msg(id,true); 
    310310        setTimeout("RichTextEditor.insertImgHtml("+id+")",1000); 
    311 } 
     311}; 
    312312 
    313313cRichTextEditor.prototype.insertImgHtml = function (id){ 
     
    318318                        this.editorCommand('Image', './inc/show_embedded_attach.php?msg_folder=INBOX/'+draftsfolder+'&msg_num='+openTab.imapUid[id]+'&msg_part='+(openTab.countFile[id]+1)); 
    319319                        // this.editorCommand('Image', '.inc/gotodownload.php?msg_folder="+msg_folder+"&msg_number="+msg_number+"&idx_file="+idx_file+"&msg_part="+msg_part+params')); 
    320 } 
     320}; 
    321321 
    322322cRichTextEditor.prototype.insertTableHtml = function (){ 
     
    334334        insertTable += "</tbody></table>"; 
    335335        this.editorCommand('Table', insertTable); 
    336 } 
     336}; 
    337337 
    338338cRichTextEditor.prototype.createTable = function(){ 
     
    370370                 
    371371                this.showWindow(form); 
    372                 } 
     372                }; 
    373373 
    374374cRichTextEditor.prototype.incrementField = function(id_val){ 
    375375        var field_text = document.getElementById(id_val); 
    376376        field_text.value = parseInt(field_text.value)+1; 
    377 } 
     377}; 
    378378 
    379379cRichTextEditor.prototype.decrementField = function(id_val){ 
     
    381381        if (parseInt(field_text.value) > 0) 
    382382                field_text.value = parseInt(field_text.value)-1; 
    383 } 
     383}; 
    384384 
    385385cRichTextEditor.prototype.createImage = function(){ 
     
    419419                 
    420420                this.showWindow(form); 
    421 } 
     421}; 
    422422cRichTextEditor.prototype.showWindow = function (div){ 
    423423 
     
    453453                        win = this.emwindow[div.id]; 
    454454                win.open();      
    455 } 
     455}; 
    456456 
    457457cRichTextEditor.prototype.Select = function(selectname) 
     
    466466        } 
    467467        mainField.focus(); 
    468 } 
     468}; 
    469469 
    470470cRichTextEditor.prototype.show_pc = function(command) 
     
    476476        else 
    477477                this.hide_pc(); 
    478 } 
     478}; 
    479479 
    480480cRichTextEditor.prototype.hide_pc = function() 
    481481{ 
    482482        document.getElementById("palettecolor").style.visibility="hidden"; 
    483 } 
     483}; 
    484484 
    485485cRichTextEditor.prototype.getOffsetTop = function(elm) { 
    486   var mOffsetTop = elm.offsetTop;1 
     486  var mOffsetTop = elm.offsetTop; 
    487487  var mOffsetParent = elm.offsetParent; 
    488488  while(mOffsetParent){ 
     
    491491  } 
    492492  return mOffsetTop; 
    493 } 
     493}; 
    494494 
    495495cRichTextEditor.prototype.getOffsetLeft = function(elm) { 
     
    501501  } 
    502502  return mOffsetLeft; 
    503 } 
     503}; 
Note: See TracChangeset for help on using the changeset viewer.