Skip to content

Instantly share code, notes, and snippets.

@punchouty
Created September 9, 2016 16:04
Show Gist options
  • Save punchouty/59a492fccb67aa5a336880252af1f9ab to your computer and use it in GitHub Desktop.
Save punchouty/59a492fccb67aa5a336880252af1f9ab to your computer and use it in GitHub Desktop.
Sample Controller
(function() {
'use strict';
angular
.module('app')
.controller('Someontroller', SomeController);
SomeController.$inject = ['someservice'];
function AdminController(logger) {
var vm = this;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment