mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
15 lines
345 B
JavaScript
15 lines
345 B
JavaScript
![]() |
Template.toolbox.events= {
|
||
|
'click .update-categories':function(){
|
||
|
var comments=Comments.find().fetch();
|
||
|
$.each(comments, function(index, element){
|
||
|
|
||
|
if(!element.userId){
|
||
|
Comments.update(element._id,{$set:{userId:element.user_id}}, function(error){
|
||
|
console.log(error);
|
||
|
});
|
||
|
}
|
||
|
console.log(element);
|
||
|
|
||
|
});
|
||
|
}
|
||
|
}
|