jQuery(function() {
    //ここからユーザーのTL表示とfollowボタン表示です
    var hash = jQuery('.box_s_in').attr('hash');
    hash = encodeURIComponent(hash);

    jQuery(".box_s_in").jTweetsAnywhere({
        searchParams: ['q=' + hash],
        count: 10, //表示数
        showConnectButton: false,
        showTweetBox: false,
        showLoginInfo: false,
        /*showTweetFeed: {
            showTimestamp: {
                refreshInterval: 15
            },
            autorefresh: {
                //mode: 'trigger-insert',
                interval: 10
            }
        },*/
        noDataDecorator: function() {
            return '<li class="jta-nodata">これ以上のデータはありません。</li>';
        },
        loadingDecorator: function() {
            return '<li class="jta-nodata">読み込み中</li>';
        }
    });
});

