mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 11:01:38 -05:00
10 lines
No EOL
196 B
JavaScript
10 lines
No EOL
196 B
JavaScript
Template.error_item.helpers({
|
|
|
|
})
|
|
|
|
Template.error_item.created = function(){
|
|
var error_id=this.data._id;
|
|
Meteor.setTimeout(function(){
|
|
Errors.update(error_id, {$set: {seen:true}});
|
|
}, 100);
|
|
} |