Browse Source

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
unreleased_contents
hSATAC 13 years ago
parent
commit
a5a16b4039
  1. 2
      .themes/classic/source/javascripts/octopress.js

2
.themes/classic/source/javascripts/octopress.js

@ -110,7 +110,7 @@ function wrapFlashVideos() {
function renderDeliciousLinks(items) { function renderDeliciousLinks(items) {
var output = "<ul>"; var output = "<ul>";
for (var i=0,l=items.length; i<l; i++) { 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>"; output += "</ul>";
$('#delicious').html(output); $('#delicious').html(output);

Loading…
Cancel
Save