console.log debug statement commented out

This commit is contained in:
mic 2024-09-23 20:48:24 +02:00
parent 58215e1a0c
commit debe655e50
2 changed files with 5 additions and 4 deletions

View file

@ -22,7 +22,7 @@ console.log("[ThunderAI] Intl.Segmenter: " + Intl.Segmenter);
(function() { (function() {
if('Segmenter' in Intl){ if('Segmenter' in Intl){
console.log('[ThunderAI] TB128+ detected. Intl.Segmenter is already supported.'); // console.log('[ThunderAI] TB128+ detected. Intl.Segmenter is already supported.');
return; return;
} }
// Creates a <script> element to inject polyfill.js into the page context // Creates a <script> element to inject polyfill.js into the page context

View file

@ -41,8 +41,9 @@
} }
Intl.Segmenter = Segmenter; Intl.Segmenter = Segmenter;
console.log('Intl.Segmenter polyfill correctly loaded.'); // console.log('Intl.Segmenter polyfill correctly loaded.');
} else {
console.log('Intl.Segmenter is already supported.');
} }
// else {
// console.log('Intl.Segmenter is already supported.');
// }
})(); })();