UNPKG

omnifilter

Version:

"Awesome filters applied to personal images"

11 lines (10 loc) 306 B
module.exports = function(app) { app.controller('SigninController', ['$scope', 'userAuth', '$location', function($scope, auth, $location) { $scope.submit = function(user) { auth.signIn(user, function() { $scope.updateEmail(); $location.path('/home'); }); }; }]); };