' - x += ' | ';
+ x += ' ';
x += ' ' + EscapeHtml(m.BankLabel) + ' ';
if (m.Capacity) { x += addDetailItem("Capacity / Speed", format("{0} Mb, {1} Mhz", (m.Capacity / 1024 / 1024), m.Speed), s); }
if (m.PartNumber) { x += addDetailItem("Part Number", EscapeHtml((m.Manufacturer && m.Manufacturer != 'Undefined')?(m.Manufacturer + ', '):'') + EscapeHtml(m.PartNumber), s); }
@@ -7658,11 +7659,33 @@
if (x != '') { sections.push({ name: "Memory", html: x, img: 'ram64.png'}); }
}
+ }
- // Disks
- //x += 'Disks ';
- //x += ''; - //console.log(message); + // Storage + if (hardware.identifiers && ident.storage_devices) { + var x = ''; + // Sort Memory + function storageSort(a, b) { if (a.Caption > b.Caption) return 1; if (a.Caption < b.Caption) return -1; return 0; } + ident.storage_devices.sort(storageSort); + + x += '
|