Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void($(".flat-list a:contains('permalink')").each(function() {
- var permalink = $(this).get(0);
- var oldhost = permalink.hostname;
- permalink.hostname="www.unedditreddit.com";
- var e = $(permalink).parents(".entry");
- if (e.has(".grayed").length) {
- $.getJSON(permalink.href+"?callback=?",function(data){
- e.find(".md>p").text((data==null)?"[not found]":data.content);
- e.find(".tagline>em").text(((data==null)?"":data.author+" ")+"[deleted]");
- permalink.hostname=oldhost
- })
- } else {
- e.one("dblclick", function() {
- e.css("opacity",0.6);
- $.getJSON(permalink.href+"?callback=?", function(data) {
- e.css("opacity",1);
- if (data!=null) {
- e.find(".md").html("<p></p>").find("p").text(data.content);
- e.find(".tagline>.userTagged").append(" [pre-edit]");
- }
- permalink.hostname=oldhost;
- })
- })
- }
- }));
Add Comment
Please, Sign In to add comment