Overview
OpenFin uses web standard behavior when processing Anchor tags. The OpenFin API provides the openUrlWithBrowser method which opens a URL in the local systems default web browser.
Example
Call the OpenFin API method openUrlWithBrowser passing in the desired URL as a parameter:
fin.System.openUrlWithBrowser(
'http://www.openfin.co'
).then(
() => console.log('Opened URL')
).catch(
err => console.log(err)
);
Reference:
System.openUrlWithBrowser(): http://cdn.openfin.co/docs/javascript/stable/tutorial-System.openUrlWithBrowser.html
Comments
0 comments
Please sign in to leave a comment.