Fix delicious widget js error

JS error occured when there's no tags on bookmarks
Check if it's an empty string before join item[i].t
This commit is contained in:
hSATAC 2011-12-21 10:53:32 +08:00
parent ce0d25100b
commit a5a16b4039
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ function wrapFlashVideos() {
function renderDeliciousLinks(items) {
var output = "<ul>";
for (var i=0,l=items.length; i<l; i++) {
output += '<li><a href="' + items[i].u + '" title="Tags: ' + items[i].t.join(', ') + '">' + items[i].d + '</a></li>';
output += '<li><a href="' + items[i].u + '" title="Tags: ' + (items[i].t == "" ? "" : items[i].t.join(', ')) + '">' + items[i].d + '</a></li>';
}
output += "</ul>";
$('#delicious').html(output);