Child: [146b7d] (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('esn.c2net')
.controller('helloWorldController', function($scope, getHelloWorld) {
getHelloWorld.then(function(message) {
$scope.message = message;
});
});