Launch the given URL in a web browser
| 622 | |
| 623 | // Launch the given URL in a web browser |
| 624 | void JavaScriptAPI::openInBrowser( QString url ) |
| 625 | { |
| 626 | assert(QUrl(url, QUrl::StrictMode).scheme().startsWith("http")); |
| 627 | fsManager->launchFileAsync(url); |
| 628 | } |
| 629 | |
| 630 | // Open a file selection dialog and return the string representation of a Javascript object to be uploaded |
| 631 | QString JavaScriptAPI::openFileBrowser() |
nothing calls this directly
no test coverage detected