Skip to content

Instantly share code, notes, and snippets.

@digilord
Created February 3, 2014 20:46
Show Gist options
  • Save digilord/8792050 to your computer and use it in GitHub Desktop.
Save digilord/8792050 to your computer and use it in GitHub Desktop.
postData = {}; // Setup the postData global
// Have this run on startup.
Meteor.startup(function(){
postsData = [
{
title: 'Introducing Telescope',
author: 'Sacha Greif',
url: 'http://sachagreif.com/introducing-telescope/'
},
{
title: 'Meteor',
author: 'Tom Coleman',
url: 'http://meteor.com'
},
{
title: 'The Meteor Book',
author: 'Tom Coleman',
url: 'http://themeteorbook.com'
}
];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment