diff --git a/js/hide-threads.js b/js/hide-threads.js
index 5a9908f1..c9ace8a5 100644
--- a/js/hide-threads.js
+++ b/js/hide-threads.js
@@ -12,11 +12,9 @@
*/
$(document).ready(function(){
- if($('div.banner').length != 0)
+ if (active_page != "index" && active_page != "ukko")
return; // not index
-
- var board = $('form input[name="board"]').val().toString();
-
+
if (!localStorage.hiddenthreads)
localStorage.hiddenthreads = '{}';
@@ -37,13 +35,15 @@ $(document).ready(function(){
}
}
- if (!hidden_data[board]) {
- hidden_data[board] = {}; // id : timestamp
- }
-
$('div.post.op').each(function() {
var id = $(this).children('p.intro').children('a.post_no:eq(1)').text();
var thread_container = $(this).parent();
+ var board = thread_container.data("board");
+
+ if (!hidden_data[board]) {
+ hidden_data[board] = {}; // id : timestamp
+ }
+
$('[–] ')
.insertBefore(thread_container.find('p.fileinfo:first'))
.click(function() {