Код: Выделить всё
ngOnInit() {
var config = {
"id": '605465000484982784',
"domId": '',
"maxTweets": 3,
"enableLinks": true,
"showUser": false,
"showTime": true,
"dateFunction": '',
"showRetweet": false,
"customCallback": handleTweets,
"showInteraction": false
};
function handleTweets(tweets) {
var x = tweets.length;
var n = 0;
var element = document.getElementById('social');
var html = '';
while(n < x) {
html += '' + tweets[n] + '';
n++;
}
element.innerHTML = html;
}
twitterFetcher.fetch(config);
}
Подробнее здесь: https://stackoverflow.com/questions/490 ... -angular-2