File tree Expand file tree Collapse file tree 4 files changed +81
-71
lines changed Expand file tree Collapse file tree 4 files changed +81
-71
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 12
12
< script type ="text/javascript " src ="//use.typekit.net/iws6ohy.js "> </ script >
13
13
< script type ="text/javascript "> try { Typekit . load ( ) ; } catch ( e ) { } </ script >
14
14
15
- < link rel ="stylesheet " href ="dist/css/app.css " media ="all ">
15
+ < link rel ="stylesheet " href ="dist/css/app.css " media ="all "/ >
16
16
< link rel ="search " type ="application/opensearchdescription+xml " title ="JWT.io " href ="/opensearch.xml ">
17
17
18
18
<!-- Bootstrap core CSS -->
Original file line number Diff line number Diff line change @@ -24,7 +24,12 @@ function url_base64_decode(str) {
24
24
default :
25
25
throw 'Illegal base64url string!' ;
26
26
}
27
- return window . atob ( output ) ; //polifyll https://github.com/davidchambers/Base64.js
27
+ var result = window . atob ( output ) ; //polifyll https://github.com/davidchambers/Base64.js
28
+ try {
29
+ return decodeURIComponent ( escape ( result ) ) ;
30
+ } catch ( err ) {
31
+ return result ;
32
+ }
28
33
}
29
34
30
35
window . decode = function ( base64json ) {
You can’t perform that action at this time.
0 commit comments