From c8bb96f0cf66b3d17de0186f8a3e2f2a7aac1df1 Mon Sep 17 00:00:00 2001 From: czaks Date: Sun, 18 Aug 2013 13:23:04 -0400 Subject: [PATCH] toggle-locked-threads.js: fix for awesome font --- js/toggle-locked-threads.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/toggle-locked-threads.js b/js/toggle-locked-threads.js index 1d517a4d..fcef0a7a 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.icon-lock.icon').each(function() { hideLockedThread(getThreadFromIcon($(this))); }); localStorage.hidelockedthreads = true; } else { - $('img.icon[title="Locked"]').each(function() { + $('img.icon[title="Locked"], i.icon-lock.icon').each(function() { restoreLockedThread(getThreadFromIcon($(this))); }); delete localStorage.hidelockedthreads;