Guest User

Untitled

a guest
Nov 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. if (Meteor.is_client) {
  2. Template.hello.events = {
  3. 'mouseleave #foo' : function () {
  4. console.log('mouseleave');
  5. },
  6. 'mouseenter #foo' : function () {
  7. console.log('mouseenter');
  8. },
  9. 'click #foo' : function () {
  10. console.log('click');
  11. }
  12. };
  13. }
Add Comment
Please, Sign In to add comment