MCPcopy Create free account
hub / github.com/PierreGode/Ragnar / exportNetkbData

Function exportNetkbData

web/scripts/ragnar_modern.js:14291–14297  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14289
14290 // Populate dropdown options
14291 for (const [profileId, profile] of Object.entries(profiles)) {
14292 const option = document.createElement('option');
14293 option.value = profileId;
14294 option.textContent = `${profile.name} (${profile.ram}MB RAM)`;
14295 select.appendChild(option);
14296 }
14297
14298 // Add change event listener to show profile details
14299 select.addEventListener('change', function() {
14300 const selectedProfileId = this.value;

Callers

nothing calls this directly

Calls 2

openMethod · 0.80
showNetkbSuccessFunction · 0.70

Tested by

no test coverage detected