aboutsummaryrefslogtreecommitdiff
path: root/source/javascripts/github.js
diff options
context:
space:
mode:
Diffstat (limited to 'source/javascripts/github.js')
-rw-r--r--source/javascripts/github.js32
1 files changed, 0 insertions, 32 deletions
diff --git a/source/javascripts/github.js b/source/javascripts/github.js
deleted file mode 100644
index fc2bb12c..00000000
--- a/source/javascripts/github.js
+++ /dev/null
@@ -1,32 +0,0 @@
-var github = (function(){
- function escapeHtml(str) {
- return $('<div/>').text(str).html();
- }
- function render(target, repos){
- var i = 0, fragment = '', t = $(target)[0];
-
- for(i = 0; i < repos.length; i++) {
- fragment += '<li><a href="'+repos[i].html_url+'">'+repos[i].name+'</a><p>'+escapeHtml(repos[i].description||'')+'</p></li>';
- }
- t.innerHTML = fragment;
- }
- return {
- showRepos: function(options){
- $.ajax({
- url: "https://api.github.com/users/"+options.user+"/repos?sort=pushed&callback=?"
- , dataType: 'jsonp'
- , error: function (err) { $(options.target + ' li.loading').addClass('error').text("Error loading feed"); }
- , success: function(data) {
- var repos = [];
- if (!data || !data.data) { return; }
- for (var i = 0; i < data.data.length; i++) {
- if (options.skip_forks && data.data[i].fork) { continue; }
- repos.push(data.data[i]);
- }
- if (options.count) { repos.splice(options.count); }
- render(options.target, repos);
- }
- });
- }
- };
-})();