I have the following code:
app.factory('Position', ['$timeout', function() {
var position = {
latitude: 44,
longitude: 26
};
console.log("Timeout started");
$timeout(function() {
position.latitude += 15;
position.longitude += 15;
}, 2000);
return position;
}]);
And I get $timeout not defined in Javascript console. Am I not injecting the dependency of the service correctly ?
ngmin. It will make your injectors minification safe and remove the burden of double typing. You'll only need thefunction($timeout).