554. File Comparison Report

Produced on Mon May 12 13:06:21 2008 UTC. This report uses XHTML and CSS2, and is best viewed with a reasonably standards compliant browser such as the latest version of Firefox or Internet Explorer. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

554.1 Files compared

# Location File Last Modified
1 Mon May 12 13:06:21 2008 UTC
2 Dolphin-v.6.1.0\plugins\tiny_mce\plugins\table\js merge_cells.js Thu Mar 27 13:53:26 2008 UTC

554.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 1 27
Removed 0 0

554.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

554.4 Active regular expressions

No regular expressions were active.

554.5 Comparison detail

    1   tinyMCEPop up.require LangPack() ;
    2  
    3   function i nit() {
    4       var f  = document .forms[0],  v;
    5  
    6       tinyMC EPopup.res izeToInner Size();
    7  
    8       f.numc ols.value  = tinyMCEP opup.getWi ndowArg('n umcols', 1 );
    9       f.numr ows.value  = tinyMCEP opup.getWi ndowArg('n umcols', 1 );
    10   }
    11  
    12   function m ergeCells( ) {
    13       var ar gs = [], f  = documen t.forms[0] ;
    14  
    15       if (!A utoValidat or.validat e(f)) {
    16           al ert(tinyMC EPopup.get Lang('inva lid_data') );
    17           re turn false ;
    18       }
    19  
    20       args[" numcols"]  = f.numcol s.value;
    21       args[" numrows"]  = f.numrow s.value;
    22  
    23       tinyMC EPopup.exe cCommand(" mceTableMe rgeCells",  false, ar gs);
    24       tinyMC EPopup.clo se();
    25   }
    26  
    27   tinyMCEPop up.onInit. add(init);