File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
- var idpList = 'https://solid .github.io/solid-idp- list/services .json' ;
2
- var recommended = [ 'https ://databox.me/ ' ] ;
1
+ var fedList = 'https://valueflows .github.io/software- list/federations .json' ;
2
+ var recommended = [ 'http ://allmende.io ' ] ;
3
3
4
- /* ---- DON'T EDIT BELOW ---- */
5
4
var accURL = { } ;
6
5
var queryVals = ( function ( a ) {
7
6
if ( a == "" ) return { } ;
@@ -19,7 +18,7 @@ var queryVals = (function(a) {
19
18
20
19
var init = function ( ) {
21
20
var http = new XMLHttpRequest ( ) ;
22
- http . open ( 'GET' , idpList ) ;
21
+ http . open ( 'GET' , fedList ) ;
23
22
http . onreadystatechange = function ( ) {
24
23
if ( this . readyState == this . DONE ) {
25
24
if ( this . status === 200 ) {
@@ -33,8 +32,8 @@ var init = function() {
33
32
} ;
34
33
35
34
var list = function ( data ) {
36
- for ( i in data . idps ) {
37
- var idp = data . idps [ i ] ;
35
+ for ( i in data . valuable ) {
36
+ var idp = data . valuable [ i ] ;
38
37
39
38
// card
40
39
var card = document . createElement ( 'div' ) ;
@@ -169,4 +168,4 @@ var safeHTML = function(str) {
169
168
return '' ;
170
169
} ;
171
170
172
- init ( ) ;
171
+ init ( ) ;
You can’t perform that action at this time.
0 commit comments