mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
14 lines
378 B
JavaScript
14 lines
378 B
JavaScript
Template.post_actions.events({
|
|
'click .toggle-actions-link': function(e){
|
|
e.preventDefault();
|
|
var $post = $(e.target).parents('.post');
|
|
var h = $post.height();
|
|
if ($post.hasClass('show-actions')) {
|
|
$post.height('auto');
|
|
$post.removeClass('show-actions');
|
|
} else {
|
|
$post.height(h+'px');
|
|
$post.addClass('show-actions');
|
|
}
|
|
}
|
|
});
|