Skip to content

Commit 1e8d816

Browse files
author
Sameer Dhar
committed
quick fix, inject so signupctrl can find it
1 parent 9a691f0 commit 1e8d816

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/templates/client/app/account(auth)/signup/signup.controller(coffee).coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
angular.module('<%= scriptAppName %>').controller 'SignupCtrl', ($scope, Auth, $location) ->
3+
angular.module('<%= scriptAppName %>').controller 'SignupCtrl', ($scope, Auth, $location, $window) ->
44
$scope.user = {}
55
$scope.errors = {}
66
$scope.register = (form) ->

app/templates/client/app/account(auth)/signup/signup.controller(js).js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
angular.module('<%= scriptAppName %>')
4-
.controller('SignupCtrl', function ($scope, Auth, $location) {
4+
.controller('SignupCtrl', function ($scope, Auth, $location, $window) {
55
$scope.user = {};
66
$scope.errors = {};
77

0 commit comments

Comments
 (0)