0

有没有人有使用 jtweetsanywhere 插件的经验?我试图只显示推文的时间戳。目前我也得到了所有属性,比如转发器。这是我使用的代码。

$('#tweetFeed').jTweetsAnywhere({
                username: 'username',
                count: 1,
                showTweetFeed: {
                    showProfileImages: false,
                    showUserScreenNames: false,
                    showUserFullNames: false,
                    showActionReply: false,
                    showActionRetweet: false,
                    showActionFavorite: false,
                    showTwitterBird: false,
                    showTimestamp: {
                        refreshInterval: 15
                    }
                }
            })
4

1 回答 1

0

这些是调用 jTweetsAnywhere 时可以设置的配置选项(及其默认值):

showProfileImages: null
showUserScreenNames: null
showUserFullNames: false
showActionReply: false
showActionRetweet: false
showActionFavorite: false
showTwitterBird: true
showTimestamp: true
showSource: false
showGeoLocation: true
showInReplyTo: true

如果你想隐藏转发器,你必须覆盖tweetRetweeterDecorator里面的配置选项:

tweetRetweeterDecorator: function()
{
    return '';
}
于 2012-05-23T14:17:01.497 回答