Connect the other two main user actions
authorChip Black <bytex64@bytex64.net>
Tue, 24 Apr 2012 03:04:33 +0000 (20:04 -0700)
committerChip Black <bytex64@bytex64.net>
Tue, 24 Apr 2012 03:04:33 +0000 (20:04 -0700)
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');
     }
 });