Skip to content

Commit 269be8e

Browse files
committed
Add missing space
There is a space missing in console statement
1 parent 1857337 commit 269be8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testapp/map_with_current_position.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
angular.module('myApp',['ngMap']).controller('MyCtrl', function($scope) {
2020
$scope.message = 'You can not hide. :)';
2121
$scope.callbackFunc = function(param) {
22-
console.log('I know where '+ param +' are.' + $scope.message);
22+
console.log('I know where '+ param +' are. ' + $scope.message);
2323
console.log('You are at' + $scope.map.getCenter());
2424
};
2525
});

0 commit comments

Comments
 (0)