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