Guest User

Untitled

a guest
Nov 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. Session.set('nDocs',10);
  2.  
  3. Tracker.autorun(() => {
  4. Meteor.subscribe('myPublication', Session.get('nDocs'));
  5. });
  6.  
  7. someEvent(ev){
  8. Session.set('nDocs', Session.get('nDocs')+10);
  9. }
Add Comment
Please, Sign In to add comment