Skip to content

Instantly share code, notes, and snippets.

@samirbr
Last active December 28, 2015 19:58
Show Gist options
  • Save samirbr/4d9ba4b8006b8335bf8a to your computer and use it in GitHub Desktop.
Save samirbr/4d9ba4b8006b8335bf8a to your computer and use it in GitHub Desktop.
app.factory('Client', function() {
function Client(obj) {
obj.created = new Date(obj.created);
angular.extend(this, obj);
}
return Client;
});
$http.get(URL).then(function(response) {
$scope.clients = response.data.map(function(client) {
return new Client(client);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment