/
githubmirror
/
drawio
Обзор
Документация
Войти
/
githubmirror
/
drawio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/main/webapp/github.html
33 строки
625 B
David Benson
24.8.6 release
19 ноя 2024, 18:35
19 ноя 2024, 18:35
da24488
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <title></title> </head> <body> This window will be closed automatically. <script> if (window.opener != null && window.opener.onGitHubCallback != null) { try { var search = window.location.search; var idx1 = search.indexOf('code='); var code = null; if (idx1 >= 0) { code = search.substring(idx1 + 5); } // Continues execution of main program flow window.opener.onGitHubCallback(code, window); } catch (e) { alert('GitHub: ' + e.toString()); window.close(); } } </script> </body> </html>