Fixes delicious integration #179
This commit is contained in:
parent
167db49940
commit
40a7809d65
@ -1,7 +1,8 @@
|
|||||||
{% if site.delicious_user %}
|
{% if site.delicious_user %}
|
||||||
<section>
|
<section>
|
||||||
<h1>On Delicious</h1>
|
<h1>On Delicious</h1>
|
||||||
<script type="text/javascript" src="http://feeds.delicious.com/v2/js/{{ site.delicious_user }}?title=&count={{ site.delicious_count }}&sort=date&extended"></script>
|
<div id="delicious"></div>
|
||||||
|
<script type="text/javascript" src="http://feeds.delicious.com/v1/json/{{ site.delicious_user }}?count={{ site.delicious_count }}&sort=date&callback=renderDeliciousLinks"></script>
|
||||||
<p><a href="http://delicious.com/{{ site.delicious_user }}">My Delicious Bookmarks »</a></p>
|
<p><a href="http://delicious.com/{{ site.delicious_user }}">My Delicious Bookmarks »</a></p>
|
||||||
</section>
|
</section>
|
||||||
{% endif %}
|
{% endif %}
|
@ -104,6 +104,15 @@ 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 += "</ul>";
|
||||||
|
$('#delicious').html(output);
|
||||||
|
}
|
||||||
|
|
||||||
$.domReady(function() {
|
$.domReady(function() {
|
||||||
testFeatures();
|
testFeatures();
|
||||||
wrapFlashVideos();
|
wrapFlashVideos();
|
||||||
|
Loading…
Reference in New Issue
Block a user