I created a service which asynchronously takes some data and saves it as
someitem = { something: 'a', somethingelse: 'b'}
inside the service.
When i console.log service.someitem, it logs as supposed, but when I try to assign it to $scope = service.someitem it does not bind it with the template?
edit. now i found my mistake: i'm overriting the $scope object...