mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
11 lines
294 B
JavaScript
11 lines
294 B
JavaScript
![]() |
Template[getTemplate('postActions')].helpers({
|
||
|
|
||
|
});
|
||
|
|
||
|
Template[getTemplate('postActions')].events({
|
||
|
'click .toggle-actions-link': function(e, instance){
|
||
|
e.preventDefault();
|
||
|
var $modules = $(e.target).parents('.post').find('.right-modules');
|
||
|
$modules.toggleClass('visible');
|
||
|
}
|
||
|
});
|