Say hello to:
Say hello to:
World's population: {{population}} millions.
------------------------------------------------------
------------------------------------------------------
------------------------------------------------------
------------------------------------------------------
------------------------------------------------------
| Name | |
|---|---|
| {{user.name}} | {{user.email}} |
| {{user.desc}} | |
| Name | Description | Priority | Estimation | Done? |
|---|---|---|---|---|
| {{item.name}} | {{item.desc}} | {{item.priority}} | {{item.estimation}} | {{item.done}} |
| Total: {{filteredBacklog.length}} | ||||
| Name | Description | Priority | Estimation | Done? |
|---|---|---|---|---|
| {{item.name}} | {{item.desc}} | {{item.priority}} | {{item.estimation}} | {{item.done}} |
| Total: {{filteredBacklogObj.length}} | ||||
var app = angular.module("DemoApp", []);
// Controller is injected with $scope and $http as dependencies
app.controller('DemoController', ['$scope', '$http', function (s, h) {
h.get('https://api.github.com/users/angular/repos')
.success(function (repos) {
s.repos = repos;
});
}]);