Skip to content

Commit 0122a77

Browse files
committed
drop false when changing selection
1 parent 5b3b7b8 commit 0122a77

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

previewers/betatest/js/refiqdacore.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ function parseData2(data) {
161161
});
162162
selectedGUIDs.forEach(guid => { console.log('Added ' + guid); });
163163
// do something with the ID of the selected items
164-
tables.filter(function(curTable) { return curTable !== userDataTable }).forEach(table => { table.draw(false) });
164+
tables.filter(function(curTable) { return curTable !== userDataTable }).forEach(table => { table.draw() });
165165
}
166166
});
167167
}
@@ -269,7 +269,7 @@ function parseData2(data) {
269269
selectedGUIDs.push(element.dataset.guid)
270270
});
271271
selectedGUIDs.forEach(guid => { console.log('Added ' + guid); });
272-
tables.filter(function(curTable) { return curTable !== codeDataTable }).forEach(table => { table.draw(false) });
272+
tables.filter(function(curTable) { return curTable !== codeDataTable }).forEach(table => { table.draw() });
273273
}
274274
});
275275
}
@@ -364,7 +364,7 @@ function parseData2(data) {
364364
selectedGUIDs = new Array();
365365
annotationDataTable.rows({ selected: true }).nodes().to$().each(function(index, element) { selectedGUIDs.push(element.dataset.guid) });
366366
selectedGUIDs.forEach(guid => { console.log('Added ' + guid); });
367-
tables.filter(function(curTable) { return curTable !== annotationDataTable }).forEach(table => { table.draw(false) });
367+
tables.filter(function(curTable) { return curTable !== annotationDataTable }).forEach(table => { table.draw() });
368368
}
369369
});
370370
}
@@ -403,7 +403,7 @@ function parseData2(data) {
403403
selectedGUIDs = new Array();
404404
sourceDataTable.rows({ selected: true }).nodes().to$().each(function(index, element) { selectedGUIDs.push(element.dataset.guid) });
405405
selectedGUIDs.forEach(guid => { console.log('Added ' + guid); });
406-
tables.filter(function(curTable) { return curTable !== sourceDataTable }).forEach(table => { table.draw(false) });
406+
tables.filter(function(curTable) { return curTable !== sourceDataTable }).forEach(table => { table.draw() });
407407
}
408408
});
409409
}
@@ -462,7 +462,7 @@ function parseData2(data) {
462462
noteDataTable.rows({ selected: true }).nodes().to$().each(function(index, element) { selectedGUIDs.push(element.dataset.guid) });
463463
selectedGUIDs.forEach(guid => { console.log('Added ' + guid); });
464464
// do something with the ID of the selected items
465-
tables.filter(function(curTable) { return curTable !== noteDataTable }).forEach(table => { table.draw(false) });
465+
tables.filter(function(curTable) { return curTable !== noteDataTable }).forEach(table => { table.draw() });
466466
}
467467
});
468468
}
@@ -520,7 +520,7 @@ function parseData2(data) {
520520
setDataTable.rows({ selected: true }).nodes().to$().each(function(index, element) { selectedGUIDs.push(element.dataset.guid) });
521521
selectedGUIDs.forEach(guid => { console.log('Added ' + guid); });
522522
// do something with the ID of the selected items
523-
tables.filter(function(curTable) { return curTable !== setDataTable }).forEach(table => { table.draw(false) });
523+
tables.filter(function(curTable) { return curTable !== setDataTable }).forEach(table => { table.draw() });
524524
}
525525
});
526526
}

0 commit comments

Comments
 (0)