﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9075	Code error in verticalSplitCell function	tengshengbo		"There is a bug in verticalSplitCell function, tabletools plugin.
Current code:
function verticalSplitCell ( selection, isDetect )

// The destination row is empty, append at will.
			if ( !candidateCell ){	
				newCellTr.append( newCell, true);
			}


The destination row may not be empty when candidateCell is null, and the argument ""true"" should not be used.

Right code:
			if ( !candidateCell ){	
				newCellTr.append( newCell );
			}"	Bug	closed	Normal		Core : Tables	3.0	duplicate		
