Created
January 22, 2015 12:15
-
-
Save simonmorley/80943bda859a3f39e375 to your computer and use it in GitHub Desktop.
medium, creating a login, integrating meraki, creating a cllient.details service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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