From f847ba1d5f8cdbb2e5a94d8ad779f14d223c0a68 Mon Sep 17 00:00:00 2001 From: Chip Black Date: Mon, 23 Apr 2012 20:04:33 -0700 Subject: [PATCH] Connect the other two main user actions --- www/jssrc/blerg/Controls.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/www/jssrc/blerg/Controls.js b/www/jssrc/blerg/Controls.js index 1bbfd2d..e593976 100644 --- a/www/jssrc/blerg/Controls.js +++ b/www/jssrc/blerg/Controls.js @@ -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'); } }); -- 2.25.1