* Return a function that opens a load file box on a specific client. * * @param client Client to open a load file box on.
(client: BackClient)
| 153 | * @param client Client to open a load file box on. |
| 154 | */ |
| 155 | public showOpenDialogFunc(client: BackClient): ShowOpenDialogFunc { |
| 156 | return (options) => { |
| 157 | return this.request(client, BackOut.OPEN_OPEN_DIALOG, options); |
| 158 | }; |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Return a function that opens an external path at a specific client. |
no test coverage detected