Skip to content

Instantly share code, notes, and snippets.

@ibrahim87
ibrahim87 / app.js
Last active August 29, 2015 14:15 — forked from jrmoran/app.js
var App = angular.module('App', []);
App.controller('TodoCtrl', function($scope, $http) {
$http.get('todos.json')
.then(function(res){
$scope.todos = res.data;
});
});