Skip to content

Commit

Permalink
Use popup display type for feed dialogs so sharing would work on Mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
timdream committed Jul 3, 2013
1 parent 7f2fe4d commit 3338a64
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions assets/sharer-dialog-view.js
Expand Up @@ -347,7 +347,8 @@ SharerDialogView.prototype.shareText = function sdv_shareText(type) {

FB.ui({
method: 'feed',
link: imgurPageUrl
link: imgurPageUrl,
display: 'popup'
});

break;
Expand All @@ -360,7 +361,8 @@ SharerDialogView.prototype.shareText = function sdv_shareText(type) {
// We cannot bring what the user had just typed in the sharer dialog
// because Facebook doesn't allow us to.
name: this.getCloudTitle(),
description: this.getCloudList() + ' -- ' + this.HASHTAG
description: this.getCloudList() + ' -- ' + this.HASHTAG,
display: 'popup'
});
break;

Expand Down

0 comments on commit 3338a64

Please sign in to comment.