errors.js 331 B

12345678910111213141516171819202122
  1. /**
  2. * @file
  3. *
  4. *
  5. * User: marand
  6. * Date: 03/09/15
  7. * Time: 17:22
  8. */
  9. Template.errors.helpers({
  10. errors: function () {
  11. return Errors.find();
  12. }
  13. });
  14. Template.error.onRendered(function () {
  15. var error = this.data;
  16. Meteor._debug(this.data);
  17. Meteor.setTimeout(function () {
  18. Errors.remove(error._id);
  19. }, 3000);
  20. });