(item)
| 280 | } |
| 281 | |
| 282 | pathId(item) { |
| 283 | if (item) { |
| 284 | let pathIds = item.path.split('/'); |
| 285 | pathIds.splice(0, 1); |
| 286 | return pathIds; |
| 287 | } |
| 288 | return []; |
| 289 | } |
| 290 | |
| 291 | itemFromDOM(domElem) { |
| 292 | return this.tree.getItemFromDOM(domElem[0]); |
no outgoing calls
no test coverage detected