Closed michaelkrog closed 10 years ago
Den nuværende (angular)stil er som dette:
..... .factory('ParticipantSvc, function(....) { ....... }).factory(.............
Det skal ændres til:
function ParticipantSvc(....) { .... } ......... .factory('ParticipantSvc', ParticipantSvc) .factory(.....
Den nuværende (angular)stil er som dette:
Det skal ændres til: