This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.onload = () => { | |
| let sheets = []; | |
| let parts = []; | |
| let boardSizes = {}; // Запомня размерите за всеки цвят | |
| document.getElementById('btnNewMaterial').onclick = () => { | |
| showMaterialEditor(); | |
| }; | |
| document.getElementById('saveMaterial').onclick = () => { | |
| const m = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.onload = () => { | |
| let sheets = []; | |
| let parts = []; | |
| let boardSizes = {}; // Запомня размерите за всеки цвят | |
| document.getElementById('btnNewMaterial').onclick = () => { | |
| showMaterialEditor(); | |
| }; | |
| document.getElementById('saveMaterial').onclick = () => { | |
| const m = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.onload = () => { | |
| let materials = []; | |
| let selectedMaterial = null; | |
| let sheets = []; | |
| let parts = []; | |
| let boardSizes = {}; // Запомня размерите за всеки цвят | |
| document.getElementById('btnNewMaterial').onclick = () => { | |
| showMaterialEditor(); | |
| }; | |
| document.getElementById('saveMaterial').onclick = () => { |