Skip to content

Commit

Permalink
cs fix, add space to concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
adam187 committed Jan 21, 2015
1 parent 5653d73 commit 65f9ee1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/angular-google-analytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ angular.module('angular-google-analytics', [])

function _generateCommandName(commandName, config) {
if (!angular.isUndefined(config) && 'name' in config && config.name) {
return config.name+'.'+commandName;
return config.name + '.' + commandName;
} else {
return commandName;
}
Expand Down

0 comments on commit 65f9ee1

Please sign in to comment.