Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Template.posts.rendered = function(){
  2.     if (!this.rendered){
  3.      
  4.   function setEvents(){
  5.  
  6.     $(".posts").on("click", function(){
  7.       $(this).slideDown(750);
  8.     });
  9. };
  10.  
  11. var init = function(){
  12.         setEvents();
  13.     }();
  14.     this.rendered = true;
  15.   }
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement