Guest User

Untitled

a guest
Oct 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. if (Meteor.is_client) {
  2. $(document).ready(function() {
  3. $('body').append(HAML['hello']({name: 'world'}));
  4. });
  5. }
  6.  
  7. if (Meteor.is_server) {
  8. Meteor.startup(function () {
  9. // code to run on server at startup
  10. });
  11. }
Add Comment
Please, Sign In to add comment