Return the post element if its containing post element is requested.
[Sone.git] / src / main / resources / static / javascript / sone.js
index 149520f..4277d9a 100644 (file)
@@ -301,7 +301,7 @@ function getSoneId(element) {
 }
 
 function getPostElement(element) {
-       return $(element).parents(".post");
+       return $(element).hasClass("post") ? $(element) : $(element).parents(".post");
 }
 
 function getPostId(element) {