Searched refs:oldCell (Results 1 – 2 of 2) sorted by relevance
1023 EditorUi.prototype.diffCell = function(oldCell, newCell) argument1027 if (oldCell.vertex != newCell.vertex)1032 if (oldCell.edge != newCell.edge)1037 if (oldCell.connectable != newCell.connectable)1042 if (((oldCell.parent != null) ? newCell.parent == null : newCell.parent != null) ||1043 (oldCell.parent != null && newCell.parent != null &&1044 oldCell.parent.getId() != newCell.parent.getId()))1049 if (((oldCell.source != null) ? newCell.source == null : newCell.source != null) ||1050 (oldCell.source != null && newCell.source != null &&1051 oldCell.source.getId() != newCell.source.getId()))[all …]
63 const moveContent = (oldCell, newCell) => {65 if (isTextCell(oldCell)) {66 newCell.innerText = oldCell.innerText71 while (oldCell.firstChild) {72 newCell.appendChild(oldCell.firstChild)