Home
last modified time | relevance | path

Searched refs:oldCell (Results 1 – 2 of 2) sorted by relevance

/plugin/diagramsnet/lib/js/diagramly/
DDiffSync.js1023 EditorUi.prototype.diffCell = function(oldCell, newCell) argument
1027 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 …]
/plugin/mobiletable/
DmobileTable.js63 const moveContent = (oldCell, newCell) => {
65 if (isTextCell(oldCell)) {
66 newCell.innerText = oldCell.innerText
71 while (oldCell.firstChild) {
72 newCell.appendChild(oldCell.firstChild)