Skip to content

Instantly share code, notes, and snippets.

@EdwinGuzman
Created April 2, 2015 04:14
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 EdwinGuzman/878c1deeb247e0db2c8c to your computer and use it in GitHub Desktop.
Save EdwinGuzman/878c1deeb247e0db2c8c to your computer and use it in GitHub Desktop.
// Wrap all functions inside a closure.
(function () {
“use strict”;
function LocationsCtrl(...) {
// ...
}
angular
.module('nypl_locations')
.controller('LocationsCtrl', LocationsCtrl);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment