-
Notifications
You must be signed in to change notification settings - Fork 7
openURL Example
Chris Churas edited this page Jan 7, 2025
·
4 revisions
Format of response for openURL results
[
{
"action": "openURL",
"data": {
"url": string // URL to open
"target": null //omit or set to null, in future this will set name of iframe within Cytoscape Web
}
}
]
target
should always be set to null
. In future this will set name of iframe within Cytoscape Web
Example:
[
{
"action": "openURL",
"data": {
"url": "https://www.cytoscape.org",
"target": null
}
}
]