()
| 146 | |
| 147 | // 全局表格操作函数 |
| 148 | function attachTableOperations() { |
| 149 | const editor = document.querySelector('.nsn-editor'); |
| 150 | if (!editor) return; |
| 151 | const tableContainers = editor.querySelectorAll('.nsn-table-container:not([data-operations-attached])'); |
| 152 | tableContainers.forEach(container => { |
| 153 | attachTableOperationsToContainer(container); |
| 154 | }); |
| 155 | } |
| 156 | |
| 157 | function attachTableOperationsToContainer(container) { |
| 158 | if (container.hasAttribute('data-operations-attached')) return; |
no test coverage detected