shanedell commented on code in PR #904:
URL: https://github.com/apache/daffodil-vscode/pull/904#discussion_r1409785990
##########
src/launchWizard/launchWizard.js:
##########
@@ -27,15 +27,88 @@ function getConfigIndex() {
if (configSelectedValue === 'New Config') {
document.getElementById('nameLabel').style =
'margin-top: 10px; visibility: visible;'
+ document.getElementById('copyLaunchConfigButton').style =
+ 'visibility: hidden;'
} else {
document.getElementById('nameLabel').style = 'visibility: hidden;'
+ document.getElementById('copyLaunchConfigButton').style =
+ 'visibility: visible;'
}
return configSelectedValue === 'New Config'
? -1
: configSelectionBox.selectedIndex
}
+function getConfigValues() {
+ var configSelectionBox = document.getElementById('configSelected')
+ var configSelectedValue =
+ configSelectionBox.options[configSelectionBox.selectedIndex].value
+ const name =
+ configSelectedValue === 'New Config'
+ ? document.getElementById('name').value
+ : configSelectedValue
+ const data = document.getElementById('data').value
+ const debugServer = parseInt(document.getElementById('debugServer').value)
+ const infosetFormat = document.getElementById('infosetFormat').value
+ const infosetOutputFilePath = document.getElementById(
+ 'infosetOutputFilePath'
+ ).value
+ const infosetOutputType = document.getElementById('infosetOutputType').value
+ const tdmlAction = document.getElementById('tdmlAction').value
+ const tdmlName = document.getElementById('tdmlName').value
+ const tdmlDescription = document.getElementById('tdmlDescription').value
+ const tdmlPath = document.getElementById('tdmlPath').value
+ const openHexView = document.getElementById('openHexView').checked
Review Comment:
@stricklandrbls I added is
https://github.com/apache/daffodil-vscode/issues/905 to go about removing the
items related to hexview and possibly updating to talk to omega-edit now
instead, such as the button in the menu bar that opens the hexview could be
updated to open omega-edit instead.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]