Skip to content

Instantly share code, notes, and snippets.

@simonmorley
Created January 22, 2015 12:15
Show Gist options
  • Save simonmorley/80943bda859a3f39e375 to your computer and use it in GitHub Desktop.
Save simonmorley/80943bda859a3f39e375 to your computer and use it in GitHub Desktop.
medium, creating a login, integrating meraki, creating a cllient.details service
app.factory('Client', ['$routeParams',
function($routeParams) {
var details = function() {
return $routeParams;
};
return {
details: details
};
}
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment