We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ef127a3 + b29cb8f commit 4f7fbd2Copy full SHA for 4f7fbd2
src/App.jsx
@@ -1119,11 +1119,13 @@ const DnDFlow = () => {
1119
const pathsimVersion = versionInfo?.pathsim_version || 'Loading...';
1120
const fcsVersion = versionInfo?.pathview_version || 'Loading...';
1121
1122
- const message = `Help documentation coming soon!\n\n` +
1123
- `Version Information:\n` +
+ const message = `Version Information:\n` +
1124
`• PathSim: ${pathsimVersion}\n` +
1125
`• PathView: ${fcsVersion}\n\n`;
1126
+ // Open the documentation URL in a new tab
1127
+ window.open('https://festim-dev.github.io/PathView/usage.html', '_blank');
1128
+
1129
alert(message);
1130
}}
1131
title="Get help, documentation, and version information"
0 commit comments