Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. Template.headerView.events({
  2. 'click .fa-comment': function(){
  3. if (snapper.state().state=="right" || snapper.state().state == "left" ){
  4. snapper.close();
  5. } else {
  6. snapper.open('right');
  7. }
  8. },
  9.  
  10. 'click .fa-bars':function(){
  11. if (snapper.state().state == 'right' || snapper.state().state =='left'){
  12. snapper.close();
  13. } else {
  14. snapper.open('left');
  15. }
  16. }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement