Skip to content

Commit

Permalink
fixed: user avatar not clickable
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroensmeets committed May 15, 2017
1 parent c962ef4 commit eaa87e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 11t.unoproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"Title": "11t",
"Description": "An app to connect to Mastodon",
"Copyright": "This code has an MIT license. Run with it!",
"Version": "1.2",
"VersionCode": 27,
"Version": "1.3",
"VersionCode": 28,
"Mobile": {
"Orientations": "Portrait"
},
Expand Down
4 changes: 2 additions & 2 deletions Classes/Class.Post.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@ function gotoPost() {

function gotoUser() {

router.push( 'home', {}, 'userprofile', { userid: _this.account.value.id } );
router.push( 'userprofile', { userid: _this.account.value.id } );

}

function gotoReblogger() {

if ( _this.rebloggerId.value > 0 ) {
router.push( "userprofile", { userid: _this.rebloggerId.value } );
router.push( 'userprofile', { userid: _this.rebloggerId.value } );
}

}
Expand Down

0 comments on commit eaa87e4

Please sign in to comment.