Clear feed status when reading feed
[blerg.git] / www / jssrc / blerg / Blerg.js
index 9285d2b..827dc06 100644 (file)
@@ -11,6 +11,7 @@ enyo.kind({
         onPostVisibility: "postVisibilityUpdate",
         onReload: "sendReload",
         onShowChangePassword: "showChangePassword",
+        onClearFeedStatus: "clearFeedStatus"
     },
     components: [
         {classes: "blerg-header", components: [
@@ -96,5 +97,8 @@ enyo.kind({
     },
     showChangePassword: function() {
         this.$.passwdDialog.show();
+    },
+    clearFeedStatus: function() {
+        this.$.controls.waterfall('onClearFeedStatus');
     }
 });