Skip to content

Instantly share code, notes, and snippets.

@baskeboler
Created May 15, 2015 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baskeboler/e93da9381b0f7f0649ec to your computer and use it in GitHub Desktop.
Save baskeboler/e93da9381b0f7f0649ec to your computer and use it in GitHub Desktop.
angular controller
(function() {
'use strict';
angular.module('App').controller('Ctrl', Ctrl);
Ctrl.$inject = [];
function Ctrl() {
var vm = this;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment