commit
449aa296d8
@ -604,6 +604,9 @@
|
|||||||
// $config['additional_javascript'][] = 'js/jquery.min.js';
|
// $config['additional_javascript'][] = 'js/jquery.min.js';
|
||||||
// $config['additional_javascript'][] = 'js/auto-reload.js';
|
// $config['additional_javascript'][] = 'js/auto-reload.js';
|
||||||
|
|
||||||
|
// Enable hiding posts. Remember to put this AFTER jQuery.
|
||||||
|
// $config['additional_javascript'][] = 'js/post-hider.js';
|
||||||
|
|
||||||
// Where these script files are located on the web (defaults to $config['root']).
|
// Where these script files are located on the web (defaults to $config['root']).
|
||||||
// $config['additional_javascript_url'] = '/js/';
|
// $config['additional_javascript_url'] = '/js/';
|
||||||
|
|
||||||
|
44
js/post-hider.js
Normal file
44
js/post-hider.js
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
function phGetCookieName(id) {
|
||||||
|
return "ph_hide_" + id;
|
||||||
|
}
|
||||||
|
function phPostHidden(id) {
|
||||||
|
return (localStorage.getItem(phGetCookieName(id)) != null);
|
||||||
|
}
|
||||||
|
function phPostToggle(id) {
|
||||||
|
if(phPostHidden(id)) { localStorage.removeItem(phGetCookieName(id)); }
|
||||||
|
else { localStorage.setItem(phGetCookieName(id),"yes"); }
|
||||||
|
}
|
||||||
|
function phGetInnerText(id) {
|
||||||
|
if(phPostHidden(id)) { return "[+]"; }
|
||||||
|
else { return "[-]"; }
|
||||||
|
}
|
||||||
|
function phGetOpID(element) {
|
||||||
|
return Number(element.children("div.post.op").children("p.intro").children("a.post_no:eq(1)").text());
|
||||||
|
}
|
||||||
|
function phPostHandle(element) {
|
||||||
|
var id = phGetOpID(element);
|
||||||
|
var preplies = element.children("div.post.reply");
|
||||||
|
var pbody = element.children("div.post.op").children("div.body");
|
||||||
|
var pimage = element.children("a:first").children("img");
|
||||||
|
var pbutton = element.children("div.post.op").children("p.intro").children("a.posthider");
|
||||||
|
var pomitted = element.children("div.post.op").children("span.omitted");
|
||||||
|
if(phPostHidden(id)) { element.addClass("thread-hidden"); pomitted.hide(); preplies.hide(); pbody.hide(); pimage.hide(); pbutton.text("[+]"); }
|
||||||
|
else { element.removeClass("thread-hidden"); pomitted.show(); preplies.show(); pbody.show(); pimage.show(); pbutton.text("[-]"); }
|
||||||
|
}
|
||||||
|
|
||||||
|
$(document).ready(function(){
|
||||||
|
$('div[id^="thread"]').each(function(index, element){
|
||||||
|
// Get thread ID.
|
||||||
|
var pin = $(this).children("div.post.op").children("p.intro");
|
||||||
|
var tid = phGetOpID($(this));
|
||||||
|
if(tid != NaN) {
|
||||||
|
$("<a class='posthider'>[?]</a>").insertAfter(pin.children('a:last')).click(function(e) {
|
||||||
|
var eO = $(e.target);
|
||||||
|
var par = eO.parent().parent().parent();
|
||||||
|
phPostToggle(phGetOpID(par));
|
||||||
|
phPostHandle(par);
|
||||||
|
});
|
||||||
|
phPostHandle($(this));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
@ -453,3 +453,6 @@ table.mod.config-editor input[type="text"] {
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
.thread-hidden {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user