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.
# | Location | File | Last Modified |
---|---|---|---|
1 | Dolphin-v.6.0.5\plugins\tiny_mce\plugins\table\jscripts | merge_cells.js | Thu Sep 20 08:59:04 2007 UTC |
2 | Mon May 12 13:06:21 2008 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 0 | 0 |
Changed | 0 | 0 |
Inserted | 0 | 0 |
Removed | 1 | 24 |
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 |
No regular expressions were active.
1 | function i nit() { | |||||
2 | tinyMC EPopup.res izeToInner Size(); | |||||
3 | ||||||
4 | var fo rmObj = do cument.for ms[0]; | |||||
5 | ||||||
6 | formOb j.numcols. value = ti nyMCE.getW indowArg(' numcols', 1); | |||||
7 | formOb j.numrows. value = ti nyMCE.getW indowArg(' numrows', 1); | |||||
8 | } | |||||
9 | ||||||
10 | function m ergeCells( ) { | |||||
11 | var ar gs = new A rray(); | |||||
12 | var fo rmObj = do cument.for ms[0]; | |||||
13 | ||||||
14 | if (!A utoValidat or.validat e(formObj) ) { | |||||
15 | al ert(tinyMC E.getLang( 'lang_inva lid_data') ); | |||||
16 | re turn false ; | |||||
17 | } | |||||
18 | ||||||
19 | args[" numcols"] = formObj. numcols.va lue; | |||||
20 | args[" numrows"] = formObj. numrows.va lue; | |||||
21 | ||||||
22 | tinyMC EPopup.exe cCommand(" mceTableMe rgeCells", false, ar gs); | |||||
23 | tinyMC EPopup.clo se(); | |||||
24 | } |