Skip to content

Instantly share code, notes, and snippets.

@dferber90
Last active August 29, 2015 14:22
Show Gist options
  • Save dferber90/735a41944b48f74ab842 to your computer and use it in GitHub Desktop.
Save dferber90/735a41944b48f74ab842 to your computer and use it in GitHub Desktop.
arrows in es5
// ES5
Template.stats.onCreated(function () {
var self = this;
this.autorun(function () {
var filter = { limit: Session.get('options.limit') };
self.subscribe('tweets', filter);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment