Skip to content

Commit

Permalink
Troubleshooting.
Browse files Browse the repository at this point in the history
  • Loading branch information
fishtank-xx committed Apr 25, 2010
1 parent 554e7fe commit f15070e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions js/index.js
Expand Up @@ -13,6 +13,7 @@ Jaml.register('saunter.project', function(proj) {
var saunter = {
populate_projects: function(projects) {
var badge = $("#badge");
console.log(projects);
_.each(projects, function(project) {
badge.append(Jaml.render(project));
});
Expand All @@ -23,8 +24,6 @@ $(document).ready(function() {
jQuery.ajax({
url: 'http://github.com/api/v1/json/pyronicide',
dataType: 'jsonp',
success: function(resp) {
console.log(resp);
saunter.populate_projects(resp.user.repositories); }
success: function(resp) { saunter.populate_projects(resp.user.repositories); }
});
});

0 comments on commit f15070e

Please sign in to comment.