X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=www%2Fjssrc%2Fblerg%2FBlerg.js;h=80037c4e3c502916968ff700f3d5c092f1817fc1;hb=8955f58c951da1402f5eb76bc2a7982548e970f4;hp=361b0c93f86c6262e22d7a7142b28f17b0155583;hpb=626be60457401042854cab447a01ed4120b78886;p=blerg.git diff --git a/www/jssrc/blerg/Blerg.js b/www/jssrc/blerg/Blerg.js index 361b0c9..80037c4 100644 --- a/www/jssrc/blerg/Blerg.js +++ b/www/jssrc/blerg/Blerg.js @@ -13,7 +13,8 @@ enyo.kind({ onSetTitle: "setTitle", onPostVisibility: "postVisibilityUpdate", onReload: "sendReload", - onShowChangePassword: "showChangePassword" + onShowChangePassword: "showChangePassword", + onAuthFailure: "authFailure" }, components: [ {classes: "blerg-header", components: [ @@ -99,5 +100,8 @@ enyo.kind({ }, showChangePassword: function() { this.$.passwdDialog.show(); + }, + authFailure: function(inSender, inEvent) { + this.logout(); } });