Reputation: 543
I am trying to use AddThis for a Facebook and Twitter share button like this:
<div class="addthis_toolbox addthis_default_style addthis_16x16_style">
<a class="addthis_button_facebook"></a>
<a class="addthis_button_twitter"></a>
...
<script type="text/javascript">
var addthis_config = addthis_config||{};
addthis_config.data_track_addressbar = false;
addthis_config.data_track_clickback = false;
</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-516a8c1a380e068d"></script>
(of course i also include the AddThis JavaScript.)
The Twitter button opens a popup but the Facebook button opens in a new browser tab. Why does this happen? I need the Facebook share function to open in a popup too. A fullscreen tab just looks wrong and ugly.
Upvotes: 0
Views: 4207
Reputation: 1255
There's your answer. That's the default, and only, behaviour available!
Upvotes: 1