mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-07-06 20:23:54 -05:00
10 lines
320 B
JavaScript
10 lines
320 B
JavaScript
(function () {
|
|
// Ajouter le polyfill safeHTML
|
|
var scriptElem = document.createElement('script');
|
|
scriptElem.setAttribute('src', 'scripts/winstore-jscompat.js');
|
|
if (document.body) {
|
|
document.body.appendChild(scriptElem);
|
|
} else {
|
|
document.head.appendChild(scriptElem);
|
|
}
|
|
}()); |