Add auxilliary CGI for account recovery
[blerg.git] / www / jssrc / blerg / Blerg.js
index 352962d..80037c4 100644 (file)
@@ -14,7 +14,7 @@ enyo.kind({
         onPostVisibility: "postVisibilityUpdate",
         onReload: "sendReload",
         onShowChangePassword: "showChangePassword",
-        onClearFeedStatus: "clearFeedStatus"
+        onAuthFailure: "authFailure"
     },
     components: [
         {classes: "blerg-header", components: [
@@ -101,7 +101,7 @@ enyo.kind({
     showChangePassword: function() {
         this.$.passwdDialog.show();
     },
-    clearFeedStatus: function() {
-        this.$.controls.waterfall('onClearFeedStatus');
+    authFailure: function(inSender, inEvent) {
+        this.logout();
     }
 });