updated css styles & angular

This commit is contained in:
Brad Rydzewski
2014-07-09 00:46:15 -07:00
parent c6b880c272
commit c8590391e9
25 changed files with 2306 additions and 4125 deletions

View File

@@ -11,7 +11,15 @@ angular.module('app').controller("HomeController", function($scope, $http, feed,
$http({method: 'GET', url: '/v1/user/feed'}).
success(function(data, status, headers, config) {
$scope.feed = (typeof data==='string')?[]:data;
$scope.feed = (typeof data==='string')?[]:data; //.splice(0, 3);
}).
error(function(data, status, headers, config) {
console.log(data);
});
$http({method: 'GET', url: '/v1/user/repos'}).
success(function(data, status, headers, config) {
$scope.repos = (typeof data==='string')?[]:data;
}).
error(function(data, status, headers, config) {
console.log(data);