diff options
Diffstat (limited to 'web/scripts4.js')
-rw-r--r-- | web/scripts4.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/web/scripts4.js b/web/scripts4.js deleted file mode 100644 index f417dfc4..00000000 --- a/web/scripts4.js +++ /dev/null @@ -1,17 +0,0 @@ -function blogsLoadPM(uname) { - $.getJSON('http://api.juick.com/pm?hash='+hash+'&uname='+uname+'&callback=?').done(function(data) { - var ul=$('#content>ul'); - ul.empty(); - $("p.page").hide(); - $.each(data,function(i,item) { - var li=$("<li/>"); - if(item.user) { - li.attr("class","pm-in"); - } else { - li.attr("class","pm-out"); - } - li.text(item.body); - li.appendTo(ul); - }); - }); -} |