1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-19 17:28:41 +01:00

toggle-locked-threads.js: update to font-awesome-3.0

Conflicts:
	js/toggle-locked-threads.js
This commit is contained in:
czaks 2014-01-17 00:42:49 +01:00 committed by Michael Foster
parent 5fda205973
commit 8f112edf1c

View File

@ -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)));
});
}
});
});