Blame view
app/scripts/controllers/about.js
189 Bytes
|
c87bc1f33
|
1 2 |
define(['app'], function (app) {
'use strict';
|
|
c87bc1f33
|
3 4 5 6 7 8 9 10 |
app.controller('AboutCtrl', function ($scope) {
$scope.awesomeThings = [
'HTML5 Boilerplate',
'AngularJS',
'Karma'
];
});
});
|