Created
April 4, 2014 14:50
-
-
Save kirillsulim/9976241 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function hab_hide(el) { | |
$(arr[el]).parent().parent().children('.reply_comments').hide() | |
} | |
function hab_show(el) { | |
$(arr[el]).parent().parent().children('.reply_comments').show() | |
} | |
var arr = $('.comment_item .comment_body .info'); | |
for(i=0; i < arr.length; i++) $(arr[i]).children('.clear').before( | |
'<div><a href="javascript:hab_hide(' + i + ');" alt="Свернуть комментарии">[-]</a>' + | |
'<a href="javascript:hab_show(' + i + ');" alt="Развернуть комментарии">[+]</a></div>' | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment