We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 848e6cb commit c9e10e7Copy full SHA for c9e10e7
src/angular-datatables.js
@@ -85,11 +85,11 @@ function initAngularDataTables($log) {
85
// -------------------------------------------------------------------------
86
if (!remove && orig) {
87
// insertBefore acts like appendChild if !arg[1]
88
- if(orig.contains(settings.nTableReinsertBefore)){
89
- orig.insertBefore(table, settings.nTableReinsertBefore);
90
- } else {
91
- orig.appendChild(table);
92
- }
+ if (orig.contains(settings.nTableReinsertBefore)) {
+ orig.insertBefore(table, settings.nTableReinsertBefore);
+ } else {
+ orig.appendChild(table);
+ }
93
}
94
// Add the TR elements back into the table in their original order
95
// jqTbody.children().detach();
0 commit comments