Skip to content

Instantly share code, notes, and snippets.

@ivanursul
Last active August 29, 2015 14:12
Show Gist options
  • Select an option

  • Save ivanursul/fc76a989209aab170d79 to your computer and use it in GitHub Desktop.

Select an option

Save ivanursul/fc76a989209aab170d79 to your computer and use it in GitHub Desktop.
'use strict';
/**
* @ngdoc function
* @name angularjsGettingStartedApp.controller:MainCtrl
* @description
* # MainCtrl
* Controller of the angularjsGettingStartedApp
*/
angular.module('angularjsGettingStartedApp')
.controller('MainCtrl', function ($scope) {
$scope.awesomeThings = [
'HTML5 Boilerplate',
'AngularJS',
'Karma'
];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment