Skip to content

Instantly share code, notes, and snippets.

@edeustace
Created January 16, 2014 12:19
Show Gist options
  • Save edeustace/8454059 to your computer and use it in GitHub Desktop.
Save edeustace/8454059 to your computer and use it in GitHub Desktop.
angular.module('initial-data', []).factory('Stuff', [function(){
return {
stuff: {}
}
}]);
angular.module('my-app.controllers', ['initial-data']).controller('MyController', ['$log', 'Stuff', function($log, Stuff){
$log.info(Stuff.stuff);
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment