From: Chip Black Date: Tue, 24 Apr 2012 03:04:33 +0000 (-0700) Subject: Connect the other two main user actions X-Git-Tag: v1.7~2^2~25 X-Git-Url: http://git.bytex64.net/?a=commitdiff_plain;h=f847ba1d5f8cdbb2e5a94d8ad779f14d223c0a68;p=blerg.git Connect the other two main user actions --- 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'); } });