errors.js 229 B

123456789101112
  1. Template.errors.helpers({
  2. errors: function () {
  3. return Errors.find();
  4. }
  5. });
  6. Template.error.onRendered(function () {
  7. var error = this.data;
  8. Meteor.setTimeout(function () {
  9. Errors.remove(error._id);
  10. }, 3000);
  11. });