diff options
author | Ugnich Anton | 2013-09-08 16:59:47 +0700 |
---|---|---|
committer | Ugnich Anton | 2013-09-08 16:59:47 +0700 |
commit | f284025bba8c1812d9093e266428dc670258d673 (patch) | |
tree | 166fe4d39d162a4405ab8ced4cc63768fcc35120 /web | |
parent | 02fa30624211b46c8f2adcd0c459ffeb1c35a743 (diff) |
dev
Diffstat (limited to 'web')
-rw-r--r-- | web/scripts4.js | 17 | ||||
-rw-r--r-- | web/style4.css | 7 |
2 files changed, 0 insertions, 24 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); - }); - }); -} diff --git a/web/style4.css b/web/style4.css deleted file mode 100644 index 91a219d0..00000000 --- a/web/style4.css +++ /dev/null @@ -1,7 +0,0 @@ -.pm-in,.pm-out { background: #FFF; border: 1px solid #E0E0E0; margin: 10px 0; padding: 10px; } -.pm-in { width: 85%; } -.pm-out { margin-left: 15%; } - -#pmulist li { overflow: hidden; } -#pmulist img { width: 32px; height: 32px; margin-right: 5px; vertical-align: middle; } -#pmulist .unreadcnt { float: right; margin-top: 4px; background: #CCC; padding: 1px 3px; } |