Skip to content

Commit

Permalink
fix(server): removed typo and cleaned up extra whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
DaftMonk committed Jan 11, 2014
1 parent 42ee53e commit 1a132c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/coffeescript/controllers/signup.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ angular.module('<%= scriptAppName %>')
$scope.register = (form) ->
$scope.submitted = true

if form.$valid
if form.$valid
Auth.createUser(
name: $scope.user.name
email: $scope.user.email
Expand Down
2 changes: 1 addition & 1 deletion templates/express/config/dummydata.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ User.find({}).remove(function() {
name: 'Test User',
email: 'test@test.com',
password: 'test'
}, function() {41
}, function() {
console.log('finished populating users');
}
);
Expand Down

0 comments on commit 1a132c2

Please sign in to comment.