Built motion from commit (unavailable).|2.5.30
[motion2.git] / public / snippets / tvox / script.js
diff --git a/public/snippets/tvox/script.js b/public/snippets/tvox/script.js
new file mode 100644 (file)
index 0000000..d603451
--- /dev/null
@@ -0,0 +1,12 @@
+angular.module('webapp', ['ngMaterial'])
+  .controller('AppCtrl', function($scope) {
+    $scope.todos = [];
+    for (var i = 0; i < 45; i++) {
+      $scope.todos.push({
+        face: 'https://avatars0.githubusercontent.com/u/598463?v=3&s=60',
+        what: "Brunch this weekend?",
+        who: "Markus Thiel",
+        notes: "I'll be in your neighborhood doing errands."
+      });
+    }
+  });