(filename, fileDialog)
| 55 | } |
| 56 | |
| 57 | function findFileElement(filename, fileDialog) { |
| 58 | return getFileElements(fileDialog).find(element => (getFileElementName(element) === filename)); |
| 59 | } |
| 60 | |
| 61 | function findActiveFileElement(fileDialog) { |
| 62 | return getFileElements(fileDialog).find(element => hasClass(element, 'active')); |
no test coverage detected