Example #1
0
 .catch(function(err) {
     notifier.error(err);
 });
Example #2
0
 .then(function(data) {
     notifier.success('User logged in');
     window.location = window.location.origin;
 })
Example #3
0
 .then(function(data) {
     notifier.success('Logged out');
     window.location = window.location.origin;
 })
Example #4
0
 .then(function(data) {
     notifier.success('User registered');
 })