Skip to content

Instantly share code, notes, and snippets.

View craigshoemaker's full-sized avatar

Craig Shoemaker craigshoemaker

View GitHub Profile
@craigshoemaker
craigshoemaker / structuring-angular-injectors
Created July 2, 2014 20:35
Structuring AngularJS Code: Injecting with Whitespace
(function () {
'use strict';
angular.module('app').controller('editController',
['$scope', '$location',
function ($scope, $location) {
// get crazy with your controller here ;)