Skip to content

Instantly share code, notes, and snippets.

@sashless
Created July 21, 2014 15:18
Show Gist options
  • Save sashless/2894f213cd06e7355d74 to your computer and use it in GitHub Desktop.
Save sashless/2894f213cd06e7355d74 to your computer and use it in GitHub Desktop.
(function () {
function MainCtrl ($scope, SomeFactory) {
this.doSometing = function () {
SomeFactory.doSomething();
};
}
angular.module('app').controller('MainCtrl', MainCtrl);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment