434. File Comparison Report

Produced on Mon May 12 13:06:03 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.

434.1 Files compared

# Location File Last Modified
1 Mon May 12 13:06:03 2008 UTC
2 Dolphin-v.6.1.0\plugins\tiny_mce\plugins\example\js dialog.js Thu Mar 27 13:53:24 2008 UTC

434.2 Comparison summary

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

434.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

434.4 Active regular expressions

No regular expressions were active.

434.5 Comparison detail

    1   tinyMCEPop up.require LangPack() ;
    2  
    3   var Exampl eDialog =  {
    4       init :  function( ) {
    5           va r f = docu ment.forms [0];
    6  
    7           //  Get the s elected co ntents as  text and p lace it in  the input
    8           f. someval.va lue = tiny MCEPopup.e ditor.sele ction.getC ontent({fo rmat : 'te xt'});
    9           f. somearg.va lue = tiny MCEPopup.g etWindowAr g('some_cu stom_arg') ;
    10       },
    11  
    12       insert  : functio n() {
    13           //  Insert th e contents  from the  input into  the docum ent
    14           ti nyMCEPopup .editor.ex ecCommand( 'mceInsert Content',  false, doc ument.form s[0].somev al.value);
    15           ti nyMCEPopup .close();
    16       }
    17   };
    18  
    19   tinyMCEPop up.onInit. add(Exampl eDialog.in it, Exampl eDialog);