diff options
| author | Rokas Puzonas <[email protected]> | 2023-08-20 09:51:16 +0300 |
|---|---|---|
| committer | Rokas Puzonas <[email protected]> | 2023-08-20 09:51:16 +0300 |
| commit | 7837aa409524a37e4f81ab243425675d331e0320 (patch) | |
| tree | 8ca8b3851d09cf509a4ccea83e4711116c2b041c /common | |
| parent | 9835869c70cbf0d91097d37b6c4db90b9fc35c2d (diff) | |
| download | raylib.com-7837aa409524a37e4f81ab243425675d331e0320.tar.gz raylib.com-7837aa409524a37e4f81ab243425675d331e0320.zip | |
remove debug logs
Diffstat (limited to 'common')
| -rw-r--r-- | common/examples.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/common/examples.js b/common/examples.js index c5af78c..d4afb46 100644 --- a/common/examples.js +++ b/common/examples.js @@ -32,14 +32,12 @@ $(document).ready(function() { const filteredExamples = [] for (var functionName in functionUsages) { if (!functionName.toLowerCase().includes(filterText)) continue; - console.log(functionName) occurences += functionUsages[functionName].length for (var usage of functionUsages[functionName]) { const exampleIndex = findExampleIndexByName(exampleData, usage.exampleName) if (!filteredExamples.includes(exampleIndex)) { filteredExamples.push(exampleIndex) - console.log(usage) } } } @@ -177,8 +175,7 @@ $(document).ready(function() { exampleEntry('⭐️⭐️⭐️⭐️', 'audio' , 'mixed_processor')]; var exampleDivs = [] - for (var i = 0; i < exampleData.length; i++) - { + for (var i = 0; i < exampleData.length; i++) { var difficulty = exampleData[i].difficulty var module = exampleData[i].module; var name = exampleData[i].name; |
