INNER CODE UNIT · JavaScript

updateRow

AscensionGameDev/Intersect-Engine · Intersect.Server/wwwroot/js/assets.js:590

		function updateRow(row, node) {
			const nameElement = row.querySelector('.name');
			if (nameElement !== null) {
				nameElement.textContent = node.Name;
			}

			const typeElement = row.querySelector('.type');
			if (typeElement !== null) {
				typeElement.textContent = node.Type;
			}

			const sizeElement = row.querySelector('.size');
			if (sizeElement !== null) {
				sizeElement.textContent = node.Type === 'File' ? node.Size.toLocaleString() : '-';
			}

			const checksumElement = row.querySelector('.checksum');
			if (checksumElement !== null) {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…