(cell)
| 79 | } |
| 80 | |
| 81 | push(cell) { |
| 82 | if (Array.isArray(cell)) { |
| 83 | this.cells.push.apply(this.cells, cell); |
| 84 | var fragment = dom.createFragment(this.element); |
| 85 | for (var i=0; i<cell.length; i++) { |
| 86 | fragment.appendChild(cell[i].element); |
| 87 | } |
| 88 | this.element.appendChild(fragment); |
| 89 | } else { |
| 90 | this.cells.push(cell); |
| 91 | this.element.appendChild(cell.element); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | unshift(cell) { |
| 96 | if (Array.isArray(cell)) { |
no test coverage detected