openURL
Open URL in system browser. If using the web backend, new_window controls whether to navigate the current page to the url or open in a new window/tab.
Parameters
- self:Backend
- Backend
- url:[]const u8
- []const u8
- new_window:bool
- bool
Source
Implementation
pub fn openURL(self: Backend, url: []const u8, new_window: bool) GenericError!void {
return self.impl.openURL(url, new_window);
}