タグ付けされた名前を入力で変更しようとしていますが、Enterキーを押すと再実行されますfeed.run();
var num = 60;
var inputTextValue;
window.onkeyup = keyup;
function keyup(e) {
inputTextValue = e.target.value;
$('#searchValue').text(inputTextValue);
if (e.keyCode == 13) {
inputTextValue = e.target.value;
feed.run();
}
}
var feed = new Instafeed({
get: 'tagged',
tagName: inputTextValue,
userId: 3614616,
accessToken: '3614616.467ede5.abc0b5a861d34365a5c8dd8db0163c4b',
limit:"100",
resolution : "low_resolution",
after: function () {
var images = $("#instafeed").find('a');
$.each(images, function(index, image) {
var delay = (index * 75) + 'ms';
$(image).css('-webkit-animation-delay', delay);
$(image).css('-moz-animation-delay', delay);
$(image).css('-ms-animation-delay', delay);
$(image).css('-o-animation-delay', delay);
$(image).css('animation-delay', delay);
$(image).addClass('animated flipInX');
});
},
template: '<a href="{{link}}" target="_blank"><img src="{{image}}" /><div class="likes">♥ {{likes}}</div></a>'
});
これでエラーが発生します
No tag name specified. Use the 'tagName' option.
タグ付けされた名前の値を更新できるアイデアはありますか? 助けてくれてありがとう。