Mobile optimization

This commit is contained in:
konarfil
2023-09-26 13:32:54 +02:00
parent 272505fb8a
commit 839c335616
7 changed files with 80 additions and 38 deletions
+5 -5
View File
@@ -139,11 +139,11 @@
function fillExample() {
const requestExample = baseUrl + "\n"
+ " ?response_type=" + responseType + "\n"
+ " &client_id=" + getClientId() + "\n"
+ " &redirect_uri=" + redirectUri + "\n"
+ " &scope=" + scope + "\n"
+ " &state=" + state;
+ "?response_type=" + responseType + "\n"
+ "&client_id=" + getClientId() + "\n"
+ "&redirect_uri=" + redirectUri + "\n"
+ "&scope=" + scope + "\n"
+ "&state=" + state;
$("#requestUriExample").text(requestExample);
$("#baseUrl").text(baseUrl);