mirror of
https://github.com/fergalmoran/roboto-promoto.git
synced 2025-12-22 09:37:37 +00:00
9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
'use strict';
|
|
|
|
angular.module('robotoPromotoApp')
|
|
.controller('MainCtrl', function ($scope, $http) {
|
|
$http.get('/api/awesomeThings').success(function(awesomeThings) {
|
|
$scope.awesomeThings = awesomeThings;
|
|
});
|
|
});
|