From 8781d5ee67339383064f4fa4653a027ef47a755e Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 27 Dec 2013 15:35:14 +0100 Subject: [PATCH] toggle-locked-threads.js: fix outstanding bug and make it work with ukko --- js/toggle-locked-threads.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/js/toggle-locked-threads.js b/js/toggle-locked-threads.js index fc14ea2e..3fd8b983 100644 --- a/js/toggle-locked-threads.js +++ b/js/toggle-locked-threads.js @@ -56,9 +56,16 @@ $(document).ready(function(){ }); if (hide_locked_threads) { - $('img.icon[title="Locked"]').each(function() { + $('img.icon[title="Locked"], i.icon-lock.icon').each(function() { hideLockedThread(getThreadFromIcon($(this))); }); } + $(document).bind('new_post', function(e, post) { + if (hide_locked_threads) { + $(post).find('img.icon[title="Locked"], i.icon-lock.icon').each(function() { + hideLockedThread(getThreadFromIcon($(this))); + }); + } + }); });