Connect the other two main user actions
[blerg.git] / www / jssrc / blerg / Controls.js
index 1bbfd2d..e593976 100644 (file)
@@ -93,5 +93,13 @@ enyo.kind({
     postVisibilityUpdate: function(inSender, inEvent) {
         this.postShowing = inEvent.showing;
         this.$.spewButton.addRemoveClass('active', inEvent.showing);
+    },
+    chatterClicked: function() {
+        window.location.href = '/#/ref/' + this.username;
+        this.bubble('onNavigate');
+    },
+    feedClicked: function() {
+        window.location.href = '/#/feed';
+        this.bubble('onNavigate');
     }
 });