Private
Public Access
1
0
Files
rowsandall/static/rest_framework_swagger/o2c.html
Sander Roosendaal f3117bd4c6 static files
2016-11-28 12:05:36 +01:00

20 lines
449 B
HTML

<script>
var qp = null;
if(window.location.hash) {
qp = location.hash.substring(1);
}
else {
qp = location.search.substring(1);
}
qp = qp ? JSON.parse('{"' + qp.replace(/&/g, '","').replace(/=/g,'":"') + '"}',
function(key, value) {
return key===""?value:decodeURIComponent(value) }
):{}
if (window.opener.swaggerUi.tokenUrl)
window.opener.processOAuthCode(qp);
else
window.opener.onOAuthComplete(qp);
window.close();
</script>