* Attempts to find a content element inside of this * component or its children (light DOM) * * @param name - Name of the content element to find * @returns An Artemis DOM instance with the found elements
(name: string)
| 380 | * @returns An Artemis DOM instance with the found elements |
| 381 | */ |
| 382 | content (name: string): DOM { |
| 383 | return $_(this).find(`[data-content="${name}"]`); |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | export default Component; |
no outgoing calls
no test coverage detected