console.log debug statement commented out
This commit is contained in:
parent
58215e1a0c
commit
debe655e50
2 changed files with 5 additions and 4 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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.');
|
||||||
|
// }
|
||||||
})();
|
})();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue