commit:950ab7653cf70c585ecf5d35cdad92d277495b6c
author:Chip Black
committer:Chip Black
date:Sun Nov 17 15:09:11 2013 -0800
parents:2703bbeff27955ceb6354e4e34b09b0169eb4465
Fix for going to your account after posting
diff --git a/www/jssrc/blerg/Post.js b/www/jssrc/blerg/Post.js
line changes: +2/-1
index de01c86..c1b889c
--- a/www/jssrc/blerg/Post.js
+++ b/www/jssrc/blerg/Post.js
@@ -46,7 +46,8 @@ enyo.kind({
         this.setData('');
         this.closePost();
         if (location.hash != '#' + blerg.API.username) {
-            qlink(blerg.API.username);
+            location.hash = '#' + blerg.API.username
+            this.bubble('onNavigate');
         } else {
             this.bubble('onReload');
         }