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