this function was only referenced once

This commit is contained in:
Shish 2012-02-12 11:45:18 +00:00
parent 9472a1014c
commit 766cc9e959
2 changed files with 77 additions and 77 deletions

View File

@ -1,3 +1,12 @@
function find_thumb_link_containers () {
var post_link = "a[href*='/post/view/']";
var has_thumb_img = ":has(img[src*='/thumb/'])";
var list = $( post_link + has_thumb_img ).parent();
return list;
}
function toggle_tag( button, id ) {
id += ":";

View File

@ -1,9 +0,0 @@
function find_thumb_link_containers () {
var post_link = "a[href*='/post/view/']";
var has_thumb_img = ":has(img[src*='/thumb/'])";
var list = $( post_link + has_thumb_img ).parent();
return list;
}