omnifilter
Version:
"Awesome filters applied to personal images"
12 lines (11 loc) • 336 B
JavaScript
module.exports = function(app) {
app.controller('SignupController', ['$scope', '$location', 'userAuth', function($scope, $location, auth) {
$scope.signup = true;
$scope.submit = function(user) {
auth.createUser(user, function() {
$scope.updateEmail();
$location.path('/home');
});
};
}]);
};