Built motion from commit 10af8726.|2.6.34
[motion2.git] / public / tvox / script.js
1 angular.module('webapp', ['ngMaterial'])
2   .controller('AppCtrl', function($scope) {
3     $scope.todos = [];
4     for (var i = 0; i < 45; i++) {
5       $scope.todos.push({
6         face: 'https://avatars0.githubusercontent.com/u/598463?v=3&s=60',
7         what: "Brunch this weekend?",
8         who: "Markus Thiel",
9         notes: "I'll be in your neighborhood doing errands."
10       });
11     }
12   });