87
87
< hgroup class ="main ">
88
88
< h2 class ="title "> httpbin.org
89
89
< small >
90
- < pre class ="version "> 0.9.1 </ pre >
90
+ < pre class ="version "> 0.9.2 </ pre >
91
91
</ small >
92
92
</ h2 >
93
93
< pre class ="base-url "> [ Base URL: httpbin.org/ ]</ pre >
@@ -137,14 +137,14 @@ <h2 class="title">httpbin.org
137
137
138
138
< script src ="{{url_for('flasgger.static', filename='swagger-ui-bundle.js')}} "> </ script >
139
139
< script src ="{{url_for('flasgger.static', filename='swagger-ui-standalone-preset.js')}} "> </ script >
140
- < script src ='{{url_for( ' flasgger.static ', filename=' ')}}lib /jquery.min.js' type='text/javascript '> </ script >
140
+ < script src ='{{url_for( 'flasgger.static ', filename=' ')}}lib /jquery.min.js' type='text/javascript '> </ script >
141
141
< script >
142
142
143
143
window . onload = function ( ) {
144
- { % if config . JWT_AUTH_URL_RULE - % }
144
+ { % if config . JWT_AUTH_URL_RULE % }
145
145
// JWT token holder
146
146
var jwt_token ;
147
- { % - endif % }
147
+ { % endif % }
148
148
149
149
fetch ( "{{ specs[0]['url'] }}" )
150
150
. then ( function ( response ) {
@@ -177,7 +177,7 @@ <h2 class="title">httpbin.org
177
177
plugins : [
178
178
SwaggerUIBundle . plugins . DownloadUrl
179
179
] ,
180
- { % if config . JWT_AUTH_URL_RULE - % }
180
+ { % if config . JWT_AUTH_URL_RULE % }
181
181
requestInterceptor : function ( request ) {
182
182
if ( jwt_token ) {
183
183
request . headers . Authorization = "Bearer " + jwt_token ;
@@ -195,7 +195,7 @@ <h2 class="title">httpbin.org
195
195
196
196
return response ;
197
197
} ,
198
- { % - endif % }
198
+ { % endif % }
199
199
// layout: "StandaloneLayout" // uncomment to enable the green top header
200
200
} )
201
201
0 commit comments