Skip to content

Commit

Permalink
Fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 1, 2010
1 parent 9b81974 commit bccdb0f
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions index.html
Expand Up @@ -14,16 +14,17 @@
profile.nickname + " (<a href='" + profile.profileurl + "'>" +
profile.steamid + "</a>)<br/><table border='0'>"

var game;
for (game in profile.gamelist)
var gameidx;
for (gameidx in profile.gamelist)
{
html += "<tr><td><img src='" + game.logourl + "'/>" +
var game = profile.gamelist[gameidx];
html += "<tr><td><img width='189' height='69'src='" + game.logourl + "'/>" +
"<a href='steam://run/" + game.appid + "'>" + game.title +
"</a>";

var tag;
for (tag in game.tags)
html += " " + tag;
var tagidx;
for (tagidx in game.tags)
html += " " + game.tags[tagidx];
html += "</td></tr>";
} // for

Expand Down Expand Up @@ -94,7 +95,7 @@
var user = 'icculus'; // !!! FIXME
$.ajax({
type: "GET",
url: "steamprofdfdfile.php?user=" + user,
url: "steamprofile.php?user=" + user,
dataType: "xml",
error: function(XMLHttpRequest, textStatus, errorThrown) {
var html = "<center><font color='#FF0000'>" +
Expand Down

0 comments on commit bccdb0f

Please sign in to comment.