Parent: [cdb7f8] (diff)

Child: [4c81a3] (diff)

Download this file

controllers.js    9 lines (7 with data), 204 Bytes

1
2
3
4
5
6
7
8
'use strict';
angular.module('tut.c2net')
.controller('helloWorldController', function($scope, getHelloWorld) {
getHelloWorld.then(function(message) {
$scope.message = message;
});
});