From 9c1cdb7636472e65998625efae01c3e364167202 Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 17 Jan 2014 00:42:49 +0100 Subject: [PATCH] toggle-locked-threads.js: update to font-awesome-3.0 Conflicts: js/toggle-locked-threads.js --- js/toggle-locked-threads.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/js/toggle-locked-threads.js b/js/toggle-locked-threads.js index 1d517a4d..8840fe34 100644 --- a/js/toggle-locked-threads.js +++ b/js/toggle-locked-threads.js @@ -40,12 +40,12 @@ $(document).ready(function(){ .click(function() { hide_locked_threads = !hide_locked_threads; if (hide_locked_threads) { - $('img.icon[title="Locked"]').each(function() { + $('img.icon[title="Locked"], i.fa-lock.fa').each(function() { hideLockedThread(getThreadFromIcon($(this))); }); localStorage.hidelockedthreads = true; } else { - $('img.icon[title="Locked"]').each(function() { + $('img.icon[title="Locked"], i.fa-lock.fa').each(function() { restoreLockedThread(getThreadFromIcon($(this))); }); delete localStorage.hidelockedthreads; @@ -55,9 +55,16 @@ $(document).ready(function(){ }); if (hide_locked_threads) { - $('img.icon[title="Locked"]').each(function() { + $('img.icon[title="Locked"], i.fa-lock.fa').each(function() { hideLockedThread(getThreadFromIcon($(this))); }); } + $(document).bind('new_post', function(e, post) { + if (hide_locked_threads) { + $(post).find('img.icon[title="Locked"], i.fa-lock.fa').each(function() { + hideLockedThread(getThreadFromIcon($(this))); + }); + } + }); });