Skip to content

Commit 04254bc

Browse files
committed
Update app.js
1 parent ea73076 commit 04254bc

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

js/app.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
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'];
33

4-
/* ---- DON'T EDIT BELOW ---- */
54
var accURL = {};
65
var queryVals = (function(a) {
76
if (a == "") return {};
@@ -19,7 +18,7 @@ var queryVals = (function(a) {
1918

2019
var init = function() {
2120
var http = new XMLHttpRequest();
22-
http.open('GET', idpList);
21+
http.open('GET', fedList);
2322
http.onreadystatechange = function() {
2423
if (this.readyState == this.DONE) {
2524
if (this.status === 200) {
@@ -33,8 +32,8 @@ var init = function() {
3332
};
3433

3534
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];
3837

3938
// card
4039
var card = document.createElement('div');
@@ -169,4 +168,4 @@ var safeHTML = function(str) {
169168
return '';
170169
};
171170

172-
init();
171+
init();

0 commit comments

Comments
 (0)