Begin shaping codebase for loopback migration.

This commit is contained in:
terakilobyte
2015-06-01 18:30:43 -04:00
parent 73de78bbad
commit d9c3251f94
74 changed files with 1186 additions and 1320 deletions

View File

@@ -0,0 +1,13 @@
#github
script.
(function() {
$.ajax({
url: '/api/github',
type: 'GET'
}).done(
function(data) {
var github = document.createElement('div');
$(github).html('<h3>' + data.issues + ' GitHub issues are open. <a href="https://github.com/freecodecamp/freecodecamp/issues">(create one)</a></h3><h3>' + data.pulls + ' pull requests are open. <a href="https://github.com/freecodecamp/freecodecamp/pulls">(create one)</a></div></div>').prependTo($('#github'))
}
);
})();