I am using firebase to get some data and display it, My issue that i cant see my list on the template. My factory is
return $firebaseArray(itemsRef);
and my object on firebase is
{
"contacts" : [ {
"active" : true,
"lastName" : "fdg",
"name" : "sdfdsf",
"number" : "052045454",
"table" : 3
}]}
and the controller is
$scope.contacts =Items;
and display it just :
ng-repeat="(key, contact) in contacts
what can be the issue? i can see that firebase it return data...